/* ===================================
   VARIABLES Y RESET
   =================================== */
:root {
    --azul-principal: #113067;
    --naranja: #fb6c10;
    --naranja-hover: #ff9900;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
    --gris-medio: #6c757d;
    --gris-oscuro: #343a40;
    --negro: #1a1a1a;

    --fuente-titulo: 'Outfit', sans-serif;
    --fuente-texto: 'Inter', sans-serif;

    --sombra-suave: 0 4px 6px rgba(0, 0, 0, 0.07);
    --sombra-media: 0 10px 25px rgba(0, 0, 0, 0.1);
    --sombra-fuerte: 0 20px 40px rgba(0, 0, 0, 0.15);

    --transicion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-texto);
    color: var(--negro);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER Y NAVEGACIÓN
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--sombra-suave);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--fuente-titulo);
}

.logo-text {
    color: var(--azul-principal);
}

.logo-csp {
    color: var(--naranja);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--negro);
    font-weight: 500;
    transition: var(--transicion);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--naranja);
    transition: var(--transicion);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--azul-principal);
    border-radius: 2px;
    transition: var(--transicion);
}

/* ===================================
   BOTONES
   =================================== */
.btn-primary {
    background: var(--naranja);
    color: var(--blanco);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--fuente-texto);
    cursor: pointer;
    transition: var(--transicion);
    box-shadow: var(--sombra-suave);
}

.btn-primary:hover {
    background: var(--naranja-hover);
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

.btn-secondary {
    background: transparent;
    color: var(--azul-principal);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--azul-principal);
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--fuente-texto);
    cursor: pointer;
    transition: var(--transicion);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--azul-principal);
    color: var(--blanco);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-solicitar {
    background: var(--azul-principal);
}

.btn-solicitar:hover {
    background: var(--naranja);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(187, 194, 206, 0.575), rgba(96, 153, 252, 0.548)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 108, 16, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--fuente-titulo);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--blanco);
}

.highlight {
    display: block;
    color: var(--naranja);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--blanco);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--fuente-titulo);
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-principal);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--blanco);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-card {
    background: linear-gradient(135deg, var(--azul-principal) 0%, #1a4080 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--sombra-fuerte);
    position: relative;
    overflow: hidden;
    min-width: 300px;
    animation: float 6s ease-in-out infinite;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--blanco);
}

.card-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.card-amount {
    font-family: var(--fuente-titulo);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ===================================
   SECCIONES GENERALES
   =================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--fuente-titulo);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--azul-principal);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gris-medio);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SERVICIOS
   =================================== */
.servicios {
    background: var(--blanco);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: var(--gris-claro);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transicion);
    border: 2px solid transparent;
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: var(--naranja);
    box-shadow: var(--sombra-media);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanco);
    border-radius: 50%;
    color: var(--naranja);
}

.servicio-card h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.5rem;
    color: var(--azul-principal);
    margin-bottom: 1rem;
}

.servicio-card p {
    color: var(--gris-medio);
}

/* ===================================
   PROCESO
   =================================== */
.proceso {
    background: var(--gris-claro);
}

.proceso-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.proceso-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--naranja);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--fuente-titulo);
    margin: 0 auto 1.5rem;
    box-shadow: var(--sombra-media);
}

.step-content h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.5rem;
    color: var(--azul-principal);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gris-medio);
}

/* ===================================
   TESTIMONIOS
   =================================== */
.testimonios {
    background: var(--blanco);
    overflow: hidden;
}

.testimonios-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.testimonios-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

.testimonio-card {
    min-width: 350px;
    background: var(--gris-claro);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--naranja);
}

.testimonio-stars {
    color: var(--naranja);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonio-text {
    font-style: italic;
    color: var(--gris-oscuro);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonio-author {
    font-weight: 600;
    color: var(--azul-principal);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 4 - 8rem));
    }
}

/* ===================================
   VENTAJAS
   =================================== */
.ventajas {
    background: var(--azul-principal);
    color: var(--blanco);
}

.ventajas .section-title {
    color: var(--blanco);
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ventaja-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transicion);
}

.ventaja-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.ventaja-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ventaja-card h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ventaja-card p {
    opacity: 0.9;
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--blanco);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--gris-claro);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--blanco);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transicion);
    font-family: var(--fuente-texto);
    color: var(--azul-principal);
}

.faq-question:hover {
    background: var(--gris-claro);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--naranja);
    transition: var(--transicion);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--gris-claro);
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--gris-oscuro);
}

/* ===================================
   CTA FINAL
   =================================== */
.cta-final {
    background: linear-gradient(135deg, var(--azul-principal) 0%, #1a4080 100%);
    color: var(--blanco);
    text-align: center;
    padding: 5rem 0;
}

.cta-final h2 {
    font-family: var(--fuente-titulo);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--negro);
    color: var(--blanco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    font-family: var(--fuente-titulo);
    margin-bottom: 1rem;
    color: var(--naranja);
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--blanco);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transicion);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--naranja);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   MODAL DEL FORMULARIO
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--blanco);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gris-claro);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicion);
    z-index: 10;
}

.modal-close:hover {
    background: var(--naranja);
    color: var(--blanco);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem 2.5rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-family: var(--fuente-titulo);
    font-size: 2rem;
    color: var(--azul-principal);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--gris-medio);
}

/* ===================================
   FORMULARIO
   =================================== */
.formulario {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--azul-principal);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gris-claro);
    border-radius: 8px;
    font-family: var(--fuente-texto);
    font-size: 1rem;
    transition: var(--transicion);
    background: var(--blanco);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--naranja);
    box-shadow: 0 0 0 3px rgba(251, 108, 16, 0.1);
}

.form-actions {
    margin-top: 1rem;
}

/* ===================================
   MENSAJE DE ÉXITO
   =================================== */
.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.8rem;
    color: var(--azul-principal);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gris-medio);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-weight: 600;
    color: var(--azul-principal);
    margin-bottom: 2rem !important;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--blanco);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--fuente-texto);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0.5rem;
    transition: var(--transicion);
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--blanco);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--sombra-media);
        transition: var(--transicion);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-solicitar {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .servicios-grid,
    .proceso-timeline,
    .ventajas-grid {
        grid-template-columns: 1fr;
    }

    .testimonio-card {
        min-width: 300px;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-large {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.btn-whatsapp-hero {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp-hero:hover {
    background: #20BA5A !important;
    color: white !important;
}

/* ===================================
   COTIZADOR - FONDO AZUL
   =================================== */
.cotizador {
    padding: 80px 0;
    background: linear-gradient(135deg, #113067 0%, #1a4a8a 100%);
    position: relative;
    overflow: hidden;
}

/* Patrón decorativo */
.cotizador::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(251, 108, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cotizador .container {
    position: relative;
    z-index: 1;
}

/* Títulos en blanco */
.cotizador .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cotizador .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Tarjeta del cotizador */
.cotizador-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cotizador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Labels */
.cotizador-campo label {
    display: block;
    font-weight: 600;
    color: var(--azul-principal);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs y Selects */
.cotizador-campo select,
.cotizador-campo input {
    width: 100%;
    min-width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--fuente-texto);
    transition: var(--transicion);
    background: white;
    color: var(--azul-principal);
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
    height: auto;
    min-height: 52px;
    box-sizing: border-box;
}

.cotizador-campo select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
}

.cotizador-campo select:focus,
.cotizador-campo input:focus {
    outline: none;
    border-color: var(--naranja);
    box-shadow: 0 0 0 3px rgba(251, 108, 16, 0.1);
}

/* Input con símbolo de dinero */
.input-money {
    position: relative;
}

.money-symbol {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--azul-principal);
    font-weight: 600;
    font-size: 18px;
}

.input-money input {
    padding-left: 40px;
}

/* Resultado */
.cotizador-resultado {
    background: linear-gradient(135deg, var(--azul-principal) 0%, #1a4a8a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.cotizador-resultado label {
    color: #ffffff;
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resultado-valor {
    margin-top: 0.5rem;
}

.resultado-valor span {
    font-family: var(--fuente-titulo);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

/* Botón Calcular */
.btn-cotizar {
    width: 100%;
    background: linear-gradient(135deg, var(--naranja) 0%, #ff8533 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transicion);
    box-shadow: 0 4px 15px rgba(251, 108, 16, 0.3);
    font-family: var(--fuente-texto);
}

.btn-cotizar:hover {
    background: linear-gradient(135deg, var(--naranja-hover) 0%, var(--naranja) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 108, 16, 0.4);
}

.btn-cotizar:active {
    transform: translateY(0);
}

/* Detalles adicionales (ocultos por defecto) */
.cotizador-detalles {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(17, 48, 103, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.detalle-item {
    text-align: center;
}

.detalle-label {
    display: block;
    font-size: 0.9rem;
    color: var(--azul-principal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detalle-valor {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-principal);
}

/* Responsive */
@media (max-width: 968px) {
    .cotizador-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cotizador {
        padding: 60px 0;
    }
    
    .cotizador-card {
        padding: 24px;
    }
    
    .cotizador-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resultado-valor span {
        font-size: 28px;
    }
    
    .cotizador-detalles {
        grid-template-columns: 1fr;
    }
}

