/* ===== VARIABLES GLOBALES ===== */
:root {
    --quote-primary: #ffcc00;
    --quote-black: #000000;
    --quote-white: #ffffff;
    --quote-gray-light: #f5f5f5;
    --quote-gray-medium: #888888;
    --quote-gray-dark: #333333;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SECCIÓN HERO - FONDO NEGRO ===== */
.quote-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 5%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 204, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.light-beams {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: var(--quote-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--quote-white);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--quote-primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 204, 0, 0.3);
    border-radius: 4px;
    animation: highlightGrow 1s ease-out forwards;
}

@keyframes highlightGrow {
    from { width: 0; }
    to { width: 100%; }
}

.hero-description {
    font-size: 1.25rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    background: rgba(255, 204, 0, 0.05);
    border-color: rgba(255, 204, 0, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
}

.stat-content {
    text-align: left;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--quote-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
}

.scroll-indicator-quote {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--quote-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--quote-primary);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

/* ===== SECCIÓN FORMULARIO - FONDO BLANCO ===== */
.quote-form-section {
    background: var(--quote-white);
    padding: 100px 5%;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.form-header {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: var(--quote-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.form-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--quote-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.15rem;
    color: var(--quote-gray-medium);
    line-height: 1.6;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form-section {
    background: var(--quote-white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.form-section:hover {
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 5px 25px rgba(255, 204, 0, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--quote-black);
    margin-bottom: 25px;
}

.section-title i {
    color: var(--quote-primary);
    font-size: 1.4rem;
}

/* Selección de servicio tipo tarjeta */
.service-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
}

.service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #fafafa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 12px;
}

.service-card input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.05));
    border-color: var(--quote-primary);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.2);
}

.service-card label:hover {
    border-color: var(--quote-primary);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--quote-black);
}

.card-description {
    font-size: 0.9rem;
    color: var(--quote-gray-medium);
}

/* Grid de formulario */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label,
.form-group .form-section-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--quote-gray-dark);
    margin: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--quote-gray-medium);
    font-size: 1.1rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--quote-white);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--quote-primary);
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #bbb;
}

/* Botón de envío */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.btn-submit {
    position: relative;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.4);
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

.form-note {
    font-size: 0.9rem;
    color: var(--quote-gray-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-note i {
    color: var(--quote-primary);
}

/* Sidebar de información */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--quote-gray-light);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
}

.sidebar-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sidebar-card .card-header i {
    color: var(--quote-primary);
    font-size: 1.5rem;
}

.sidebar-card .card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--quote-black);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--quote-gray-dark);
}

.benefits-list i {
    color: var(--quote-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}


/* ===== SECCIÓN CONTACTO DIRECTO - FONDO NEGRO ===== */
.direct-contact-section {
    background: linear-gradient(135deg, #0a0a0a, #000000);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.direct-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 204, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-white {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    color: var(--quote-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--quote-white);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    background: rgba(255, 204, 0, 0.05);
    border-color: rgba(255, 204, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.5);
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--quote-white);
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--quote-primary);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    gap: 15px;
}

.contact-link i {
    transition: var(--transition-smooth);
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* ===== SECCIÓN UBICACIÓN - FONDO BLANCO ===== */
.location-section {
    background: var(--quote-white);
    padding: 100px 5%;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info .section-label {
    display: inline-block;
    margin-bottom: 15px;
}

.location-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--quote-black);
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.block-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #000;
    flex-shrink: 0;
}

.block-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--quote-black);
    margin-bottom: 8px;
}

.block-content p {
    font-size: 0.95rem;
    color: var(--quote-gray-medium);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--quote-gray-light);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quote-gray-dark);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--quote-primary);
    border-color: var(--quote-primary);
    color: #000;
    transform: translateY(-5px);
}

.map-container {
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* ===== SECCIÓN CTA FINAL - FONDO NEGRO ===== */
.final-cta-section {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-particles {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--quote-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 20px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.5);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--quote-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 45px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-cta-secondary:hover {
    border-color: var(--quote-primary);
    color: var(--quote-primary);
    transform: translateY(-5px);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeUp {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.animate-slideRight {
    animation: slideRight 1s ease-out forwards;
    opacity: 0;
}

.animate-slideLeft {
    animation: slideLeft 1s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-sidebar {
        position: static;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .form-title,
    .contact-title,
    .location-title {
        font-size: 2.5rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .service-selection {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 80px 5%;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .quote-form-section,
    .direct-contact-section,
    .location-section,
    .final-cta-section {
        padding: 60px 5%;
    }
    
    .form-title,
    .contact-title,
    .location-title {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 25px;
    }

    .info-block {
        flex-direction: column;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }

    .section-label-white {
        font-size: 0.75rem;
    }
}

/* ===== CAMPOS DINÁMICOS DE SERVICIO ===== */
.service-fields {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #f0f0f0;
}

.service-fields.active {
    display: grid;
    animation: fieldsFadeIn 0.35s ease;
}

.service-fields .full-width {
    grid-column: 1 / -1;
}

@keyframes fieldsFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.details-always {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #f0f0f0;
}

/* ===== RECOMENDACIÓN DE UNIDAD ===== */
.unit-recommendation {
    grid-column: 1 / -1;
}

.unit-rec-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.07), rgba(255, 204, 0, 0.03));
    border: 2px solid rgba(255, 204, 0, 0.45);
    border-radius: 16px;
    padding: 20px 24px;
    animation: fieldsFadeIn 0.3s ease;
}

.unit-rec-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--quote-primary), #ffd633);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    flex-shrink: 0;
}

.unit-rec-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.unit-rec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--quote-primary);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-rec-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--quote-black);
    line-height: 1.2;
}

.unit-rec-capacity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    margin-top: 2px;
}

.unit-rec-capacity i {
    color: var(--quote-primary);
}

.unit-rec-brand {
    background: #efefef;
    color: #666;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.unit-rec-desc {
    font-size: 0.9rem;
    color: var(--quote-gray-medium);
    line-height: 1.5;
    margin-top: 5px;
    margin-bottom: 0;
}

.unit-rec-nota {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.unit-rec-nota i {
    color: var(--quote-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== TIPO DE VIAJE (Carga) ===== */
.trip-type-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.trip-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    font-family: 'Lato', sans-serif;
    color: var(--quote-gray-dark);
    transition: var(--transition-smooth);
    user-select: none;
}

.trip-opt input[type="radio"] {
    display: none;
}

.trip-opt i {
    color: #ccc;
    transition: color 0.2s;
}

.trip-opt.active {
    border-color: var(--quote-primary);
    background: rgba(255, 204, 0, 0.08);
    font-weight: 700;
    color: var(--quote-black);
}

.trip-opt.active i {
    color: var(--quote-primary);
}

.trip-opt:hover {
    border-color: rgba(255, 204, 0, 0.5);
}

/* ===== TOAST NOTIFICATIONS ===== */
.form-toast {
    position: fixed;
    top: 110px;
    right: -420px;
    z-index: 10000;
    max-width: 360px;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: right 0.3s ease;
}

.form-toast--show { right: 24px; }
.form-toast--error   { background: #cc0000; color: #fff; }
.form-toast--success { background: #007e33; color: #fff; }

.form-toast i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===== ESTILOS MOVIDOS DESDE JS ===== */
.service-card.selected label {
    transform: scale(1.05);
}

.input-wrapper.focused {
    transform: scale(1.02);
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffcc00;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s infinite linear;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

@media (max-width: 900px) {
    .service-fields {
        grid-template-columns: 1fr;
    }
    .trip-type-options {
        flex-direction: column;
    }
    .unit-rec-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .form-toast {
        max-width: calc(100% - 40px);
        right: -100%;
    }
    .form-toast--show { right: 20px; }
}

/* ===== VALIDACIÓN DE CAMPOS ===== */
.input-wrapper.error input,
.input-wrapper.error select,
.input-wrapper.error textarea {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.input-wrapper.valid input,
.input-wrapper.valid select,
.input-wrapper.valid textarea {
    border-color: #38a169 !important;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.12);
}

.input-wrapper.error > i:first-child {
    color: #e53e3e;
}

.input-wrapper.valid > i:first-child {
    color: #38a169;
}

.field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 6px;
    padding-left: 4px;
    animation: fieldErrorIn 0.2s ease;
}

.field-error i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

@keyframes fieldErrorIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #e53e3e;
    margin-top: 10px;
    animation: fieldErrorIn 0.2s ease;
}

.trip-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #e53e3e;
    margin-top: 8px;
    animation: fieldErrorIn 0.2s ease;
}

.trip-opt.error {
    border-color: #e53e3e !important;
}

.service-card.card-error label {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}