/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #2C3E50;
    --color-light: #F8F9FA;
    --color-accent: #95A5A6;
    --color-sand: #E9DCCD;
    --color-text: #333333;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 4px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* TIPOGRAF�A */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.5rem;
}

.highlight {
    color: var(--color-dark);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-sand);
    opacity: 0.5;
    z-index: -1;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--color-accent);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

/* BOTONES */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-dark);
    color: white;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: white;
}

/* HEADER */
.header {
    padding: 0;  /* Cambiado de var(--spacing-sm) 0 a 0 */
    position: fixed;
    top: 0;      /* Asegurar que esté pegado arriba */
    left: 0;
    width: 100%;
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px; /* Altura fija para el header */
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ocupa toda la altura del header */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--color-dark);
}

.cta-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-dark);
    border-radius: var(--border-radius);
}

/* SECCIONES */
section {
    padding: var(--spacing-lg) 0;
}

/* HERO ACTUALIZADO */
.hero {
    padding-top: calc(var(--spacing-lg) * 2);
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #f9fafb;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 0 0 var(--spacing-md) 0;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
    flex: 1 1 auto; /* Que se adapten */
    min-width: 240px; /* Ancho m�nimo igual para ambos */
    max-width: 300px; /* Opcional: m�ximo para que no se estiren demasiado */
    padding: 1rem 2rem;
    font-size: 1rem;
    text-align: center;
}

.hero-ctas .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
}

.hero-ctas .btn-secondary:hover {
    background-color: var(--color-dark);
    color: white;
}

/* HERO IMAGE - VERSI�N STRATEGIC BREATHE */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
    position: relative;
}

/* Efecto de fondo que respira */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(233, 220, 205, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradient-breathe 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.framework-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 1;
    animation: strategic-breathe 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.1);
}

/* Animaci�n principal - todo el SVG respira */
@keyframes strategic-breathe {
    0% {
        transform: scale(1);
        opacity: 0.9;
        filter: drop-shadow(0 10px 15px rgba(44, 62, 80, 0.1));
    }
    25% {
        transform: scale(1.02);
        opacity: 1;
        filter: drop-shadow(0 20px 25px rgba(44, 62, 80, 0.15));
    }
    50% {
        transform: scale(1.01);
        opacity: 0.95;
        filter: drop-shadow(0 15px 20px rgba(44, 62, 80, 0.12));
    }
    75% {
        transform: scale(1.005);
        opacity: 0.9;
        filter: drop-shadow(0 10px 15px rgba(44, 62, 80, 0.1));
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
        filter: drop-shadow(0 10px 15px rgba(44, 62, 80, 0.1));
    }
}

/* Animaci�n para las l�neas del SVG */
.framework-svg line {
    animation: line-breathe 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes line-breathe {
    0%, 100% {
        opacity: 0.3;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 0.6;
        stroke-dashoffset: 10;
    }
}

/* Animaci�n para las l�neas diagonales (paths) */
.framework-svg path {
    animation: path-glow 7s ease-in-out infinite;
}

@keyframes path-glow {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 0.8;
        stroke-width: 2.5;
    }
}

/* Animaci�n para el punto central */
.framework-svg circle:last-child {
    animation: glow-pulse 7s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(44, 62, 80, 0.3));
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(44, 62, 80, 0.3));
        r: 8;
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(44, 62, 80, 0.5));
        r: 9;
    }
}

/* Animaci�n del fondo radial */
@keyframes gradient-breathe {
    0%, 100% {
        opacity: 0.3;
        width: 80%;
        height: 80%;
    }
    50% {
        opacity: 0.6;
        width: 90%;
        height: 90%;
    }
}

/* GRID BENEFICIOS Y SERVICIOS */
.benefits-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.benefit-card, .service-card {
    padding: var(--spacing-md);
    text-align: center;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.benefit-card:hover, .service-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

/* BENEFICIOS ENHANCED - CON VISUALES */
.benefits-enhanced {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.benefits-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 300;
}

/* Bloques de beneficio */
.benefit-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-block.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.benefit-block:hover {
    background-color: #f9fafb;
    transform: translateY(-5px);
}

/* Visuales */
.benefit-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    width: 100%;
    max-width: 250px;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: var(--spacing-md);
    border: 1px solid rgba(149, 165, 166, 0.1);
    transition: all 0.3s ease;
}

.benefit-block:hover .visual-container {
    border-color: rgba(44, 62, 80, 0.2);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.05);
}

.benefit-svg {
    width: 100%;
    height: auto;
}

/* Contenido */
.benefit-content-side {
    padding: var(--spacing-md);
}


.benefit-content-side h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.benefit-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    font-style: italic;
}

.benefit-description {
    font-size: 1rem;
    color: var(--color-accent);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 400px;
}

/* Outcomes compactos */
.benefit-outcomes-compact {
    margin-top: var(--spacing-md);
}

.benefit-outcomes-compact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.outcome-tag {
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    background-color: rgba(233, 220, 205, 0.2);
    border-radius: 20px;
    color: var(--color-dark);
    border: 1px solid rgba(44, 62, 80, 0.05);
    transition: all 0.2s ease;
}

.outcome-tag:hover {
    background-color: var(--color-sand);
    color: var(--color-dark);
    border-color: transparent;
}
/* Estilos para imágenes en beneficios */
.benefit-img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.benefit-block:hover .benefit-img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15);
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .benefit-img {
        max-width: 200px;
        margin: 0 auto;
    }
}
/* CORRECCIÓN PARA QUE IMAGEN Y TEXTO ESTÉN EN LA MISMA FILA */

/* Asegurar que benefit-block use grid */
.benefit-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Para el beneficio con reverse (el segundo) */
.benefit-block.reverse {
    grid-template-columns: 1.5fr 1fr;
}

/* Contenedor visual */
.benefit-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    width: 100%;
    max-width: 280px;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: var(--spacing-md);
    border: 1px solid rgba(149, 165, 166, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo para la imagen */
.benefit-img {
    width: 100%;
    height: auto;
    max-width: 220px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.benefit-block:hover .visual-container {
    border-color: rgba(44, 62, 80, 0.2);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.05);
}

.benefit-block:hover .benefit-img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15);
}

/* Contenido del texto */
.benefit-content-side {
    padding: var(--spacing-md);
}

/* Responsive */
@media (max-width: 968px) {
    .benefit-block,
    .benefit-block.reverse {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .benefit-visual-side {
        order: 1;
    }
    
    .benefit-content-side {
        order: 2;
    }
    
    .visual-container {
        margin: 0 auto;
        max-width: 250px;
    }
    
    .benefit-img {
        max-width: 180px;
    }
}
/* ESTILO PARA LA FRASE DE REFUERZO */
.benefits-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
    max-width: 150px;
}

.footer-quote {
    font-size: 1.3rem;
    text-align: center;
    white-space: nowrap;
}

.quote-text {
    color: var(--color-accent);
    font-weight: 300;
}

.quote-emphasis {
    color: var(--color-dark);
    font-weight: 600;
    position: relative;
    margin-left: 0.5rem;
}

.quote-emphasis::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-sand);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .benefits-footer {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .footer-line {
        max-width: 80px;
    }
    
    .footer-quote {
        font-size: 1.1rem;
        white-space: normal;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .quote-emphasis {
        margin-left: 0;
    }
}

/* ===== FOOTER MEJORADO ===== */
.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    font-size: 0.95rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-sand), transparent);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top section - grid de 4 columnas */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

/* Columna de marca */
.footer-brand .logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    display: inline-block;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-sand);
    margin-bottom: var(--spacing-xs);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    max-width: 280px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: var(--spacing-xs);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-link:hover {
    background-color: var(--color-sand);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.social-icon {
    font-size: 1rem;
    font-weight: 600;
}

/* Columnas de enlaces */
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-sand);
}

.footer-contact-heading {
    margin-top: var(--spacing-md) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    text-decoration: underline;
}

/* Línea divisoria */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
    margin: var(--spacing-md) 0;
    opacity: 0.3;
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.copyright {
    margin: 0;
}

.footer-credits {
    margin: 0;
}

.footer-credits .heart {
    color: #ff6b6b;
    display: inline-block;
    animation: latido 1.5s ease infinite;
}

@keyframes latido {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-md) 0;
    }
    
    .footer-brand .logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-desc {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}
/* SERVICIOS - NUEVOS ESTILOS */
.services {
    background-color: #f9fafb;
    padding: var(--spacing-lg) 0;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.03);
    border: 1px solid rgba(149, 165, 166, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.08);
    border-color: rgba(44, 62, 80, 0.15);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-dark);
    opacity: 0.3;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: var(--color-dark);
}

.service-subhead {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.service-full-description {
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.service-includes,
.service-ideal {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(149, 165, 166, 0.2);
    border-bottom: 1px solid rgba(149, 165, 166, 0.2);
}

.service-includes h4,
.service-ideal h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.service-includes ul,
.service-ideal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li,
.service-ideal li {
    font-size: 0.95rem;
    color: var(--color-dark);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.service-includes li::before,
.service-ideal li::before {
    content: "•";
    color: var(--color-sand);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -1px;
}

/* Modalidades para The Architecture */
.service-modalities {
    margin: var(--spacing-md) 0;
}

.modality {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px dashed rgba(149, 165, 166, 0.2);
}

.modality:last-child {
    border-bottom: none;
}

.modality-icon {
    font-size: 1.2rem;
    color: var(--color-sand);
    min-width: 24px;
}

.modality-text {
    flex: 1;
}

.modality-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.modality-text p {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin: 0;
    line-height: 1.4;
}

/* Botón de servicio */
.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

/* Footer de servicios */
.services-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(149, 165, 166, 0.2);
}

.services-footer-text {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.btn-footer {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-dark);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.btn-footer:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .btn-service {
        align-self: stretch;
        text-align: center;
    }
    
    .services-footer-text {
        font-size: 1rem;
    }
    
    .btn-footer {
        display: block;
        width: 100%;
    }
}

/* MÉTODO SOAVIUM - VERSIÓN SIMPLIFICADA */
.methodology-simple {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.methodology-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.methodology-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.methodology-subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline horizontal */
.methodology-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.timeline-step:hover .step-circle {
    transform: scale(1.05);
    background-color: var(--color-sand);
    color: var(--color-dark);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: var(--color-dark);
    font-weight: 600;
}

.step-subtitle {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin: 0;
    font-weight: 400;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--color-sand);
    opacity: 0.4;
    font-weight: 300;
}

/* Frase de refuerzo */
.methodology-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.quote-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
    max-width: 120px;
}

.quote-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.quote-light {
    color: var(--color-accent);
    font-weight: 300;
}

.quote-bold {
    color: var(--color-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-top: 0.2rem;
}

.quote-bold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-sand);
    opacity: 0.7;
}

/* Botón CTA */
.methodology-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

.btn-methodology {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-methodology:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .methodology-timeline {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .timeline-step {
        flex-direction: row;
        gap: var(--spacing-md);
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }
    
    .step-circle {
        margin-bottom: 0;
    }
    
    .step-content {
        text-align: left;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .methodology-quote {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .quote-line {
        max-width: 80px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .methodology-header h2 {
        font-size: 2rem;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .btn-methodology {
        width: 100%;
    }
}


/* REVIEWS DE CLIENTES */
.reviews {
    padding: var(--spacing-lg) 0;
    background-color: #f9fafb;
}

.reviews h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.review-card {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.03);
    border: 1px solid rgba(149, 165, 166, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.08);
    border-color: rgba(44, 62, 80, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.review-quote-icon {
    font-size: 4rem;
    line-height: 0.8;
    color: var(--color-sand);
    font-family: Georgia, serif;
    opacity: 0.5;
    margin-top: -10px;
}

.review-service-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(233, 220, 205, 0.3);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(149, 165, 166, 0.2);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    font-style: normal;
    quotes: none;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(149, 165, 166, 0.1);
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 600;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--color-accent);
}

.review-rating {
    color: #d4af37; /* Dorado suave */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.reviews-footer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.reviews-footer-text {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 0 var(--spacing-md);
}

.reviews-footer-text::before,
.reviews-footer-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--color-sand);
    opacity: 0.5;
}

.reviews-footer-text::before {
    left: -20px;
}

.reviews-footer-text::after {
    right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews h2 {
        font-size: 1.8rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .review-card {
        padding: var(--spacing-sm);
    }
    
    .review-quote-icon {
        font-size: 3rem;
    }
    
    .reviews-footer-text::before,
    .reviews-footer-text::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .review-rating {
        align-self: flex-end;
    }
}

/* SOBRE SOAVIUM - BANNER COMPLETO */
.about-founder {
    padding: 0;
    background-color: white;
    width: 100%;
    border-top: 1px solid rgba(149, 165, 166, 0.1);
    border-bottom: 1px solid rgba(149, 165, 166, 0.1);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

/* Lado izquierdo - Contenido */
.about-content {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.about-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    text-align: left;
}

.about-preview {
    margin-bottom: var(--spacing-md);
}

.about-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.about-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-sand);
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

/* Tags de expertise */
.about-expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.expertise-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    background-color: white;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 30px;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background-color: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

/* Botón CTA */
.about-cta {
    margin-top: var(--spacing-sm);
}

.btn-about {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

/* Lado derecho - Imagen */
.about-image {
    background: linear-gradient(135deg, #2C3E50 0%, #E9DCCD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.image-placeholder {
    width: 80%;
    max-width: 400px;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 5rem;
    display: block;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--color-dark);
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-content {
        padding: var(--spacing-lg) var(--spacing-md);
        order: 2;
    }
    
    .about-image {
        min-height: 400px;
        order: 1;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-highlight {
        font-size: 1rem;
    }
    
    .expertise-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .image-placeholder {
        width: 70%;
    }
    
    .placeholder-icon {
        font-size: 4rem;
    }
}
/* ===== ASSESSMENT ===== */

.assessment {
    padding: var(--spacing-xl) 0;
    background-color: #f9fafb;
    margin: var(--spacing-lg) 0;
}

.assessment-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.assessment-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.assessment-question h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

/* Pilares - SIN NÚMEROS */
.assessment-pillars {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    flex-wrap: wrap;
}

.pillar {
    text-align: center;
    min-width: 140px;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: white;
    border-radius: 40px;
    border: 1px solid rgba(149, 165, 166, 0.2);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-3px);
    border-color: var(--color-dark);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.05);
}

.pillar p {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 500;
    margin: 0;
}

.assessment-cta-text {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 500;
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

/* FORMULARIO MEJORADO */
.assessment-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 1px solid rgba(149, 165, 166, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group input::placeholder {
    color: var(--color-accent);
    opacity: 0.7;
}

/* Botón CTA */
.btn-large {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--color-dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-xs);
}

.btn-large:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.15);
}

/* Texto pequeño */
.small-text {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-top: var(--spacing-md);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .assessment {
        padding: var(--spacing-lg) 0;
        margin: var(--spacing-md) 0;
    }
    
    .assessment-question h2 {
        font-size: 1.6rem;
    }
    
    .pillar {
        min-width: 110px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .pillar p {
        font-size: 0.85rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .form-group input {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .assessment-question h2 {
        font-size: 1.4rem;
    }
    
    .pillar {
        min-width: 90px;
    }
}



/* ÚLTIMO HOOK - TAKE IT SUAVE */
.final-hook {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(149, 165, 166, 0.1);
    border-bottom: 1px solid rgba(149, 165, 166, 0.1);
    margin: var(--spacing-lg) 0;
}

.hook-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hook-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hook-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    line-height: 1.1;
}

.hook-highlight {
    font-weight: 600;
    color: var(--color-sand);
    position: relative;
    display: inline-block;
}

.hook-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-sand);
    opacity: 0.2;
    z-index: -1;
}

.hook-text {
    font-size: 1.2rem;
    color: var(--color-accent);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.hook-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sand), transparent);
    max-width: 150px;
}

.divider-icon {
    color: var(--color-sand);
    font-size: 1.5rem;
    opacity: 0.7;
}

.hook-closing {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.btn-hook {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-dark);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.btn-hook:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.15);
}

/* Opción 2 extras */
.hook-quote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border-left: 3px solid var(--color-sand);
    background-color: #f9fafb;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.hook-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-accent);
    margin: 0;
}

.hook-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hook-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hook-secondary:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

/* Opción 3 extras */
.hook-text-emphasis {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin: var(--spacing-md) 0;
}

.hook-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: #f9fafb;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin: var(--spacing-md) 0;
    border: 1px solid rgba(149, 165, 166, 0.2);
}

.pill-icon {
    font-size: 1.2rem;
}

.pill-text {
    font-size: 0.95rem;
    color: var(--color-accent);
}

.hook-small {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .hook-content h2 {
        font-size: 3rem;
    }
    
    .hook-text {
        font-size: 1rem;
    }
    
    .hook-closing {
        font-size: 1rem;
    }
    
    .btn-hook, .btn-hook-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hook-pill {
        flex-direction: column;
        text-align: center;
    }
}

/* CONTACTO INTEGRADO - TAKE IT SUAVE */
.contact-integrated {
    padding: var(--spacing-xl) 0;
    background-color: #f9fafb;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.contact-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.contact-header h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    line-height: 1.1;
}

.contact-highlight {
    font-weight: 600;
    color: var(--color-sand);
    position: relative;
    display: inline-block;
}

.contact-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-sand);
    opacity: 0.2;
    z-index: -1;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--color-accent);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Wrapper de 2 columnas */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.05);
    border: 1px solid rgba(149, 165, 166, 0.1);
}

/* Formulario */
.contact-form-container {
    padding-right: var(--spacing-md);
    border-right: 1px solid rgba(149, 165, 166, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-row {
    display: flex;
    gap: var(--spacing-sm);
}

.form-row input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(149, 165, 166, 0.3);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-row input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(149, 165, 166, 0.3);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.btn-contact {
    padding: 1rem 2rem;
    background-color: var(--color-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-xs);
}

.btn-contact:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-quote {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-left: var(--spacing-md);
}

.quote-mark {
    font-size: 4rem;
    color: var(--color-sand);
    opacity: 0.3;
    font-family: Georgia, serif;
    position: absolute;
    left: -10px;
    top: -20px;
}

.sidebar-quote p {
    font-size: 1.1rem;
    color: var(--color-dark);
    line-height: 1.5;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.sidebar-contact {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(149, 165, 166, 0.2);
    border-bottom: 1px solid rgba(149, 165, 166, 0.2);
}

.sidebar-email {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.sidebar-response {
    font-size: 0.9rem;
    color: var(--color-accent);
}

.sidebar-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-dark);
}

.contact-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-top: var(--spacing-md);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 3rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .contact-form-container {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(149, 165, 166, 0.2);
        padding-bottom: var(--spacing-md);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .sidebar-quote {
        text-align: center;
        padding-left: 0;
    }
    
    .quote-mark {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
    
    .sidebar-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
}


/* FOOTER */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.footer-social a {
    color: white;
    text-decoration: none;
    margin-left: var(--spacing-md);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav {
        display: none; /* O implementar men� hamburguesa */
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-social a {
        margin: 0 var(--spacing-sm);
    }
    @media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-image {
        order: -1; /* Imagen arriba en m�vil */
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        text-align: center;
    }

}
}
/* ===== MENÚ HAMBURGUESA ===== */

/* Ocultar hamburguesa en desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animación del hamburguesa cuando está activo */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE MÓVIL ===== */
@media (max-width: 768px) {
    /* Mostrar hamburguesa */
    .hamburger {
        display: flex;
    }
    
    /* Ocultar menú por defecto en móvil */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: flex !important;
        gap: 2rem;
    }
    
    /* Menú visible */
    .nav.active {
        left: 0;
    }
    
    /* Estilo de los enlaces en móvil */
    .nav a {
        font-size: 1.3rem;
        color: var(--color-dark);
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(149, 165, 166, 0.2);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a.cta-nav {
        border: 2px solid var(--color-dark);
        background: transparent;
        border-radius: 4px;
        margin-top: 1rem;
    }
    
    .nav a.cta-nav:hover {
        background: var(--color-dark);
        color: white;
    }
    
    /* Eliminar el display:none que había antes */
    .header .nav {
        display: flex !important;
    }
}

/* Ajuste para que el contenido no quede detrás del header fijo */
body {
    padding-top: 70px;
}

/* ===== ESTILOS PARA LOGOS ===== */

/* Logo completo en header */
.logo-full {
    display: inline-block;
    height: 40px; /* Ajusta según el tamaño de tu logo */
}

.logo-img {
    height: 100%;
    width: auto;
    display: block;
}

/* Logo corto para móvil */
.logo-short {
    display: none;
    height: 35px; /* Ajusta según el tamaño de tu logo */
}

.logo-img-short {
    height: 100%;
    width: auto;
    display: block;
}

/* Logo en footer */
.footer-brand .logo {
    display: inline-block;
    height: 40px; /* Ajusta según el tamaño de tu logo */
    margin-bottom: var(--spacing-xs);
}

.footer-logo-img {
    height: 100%;
    width: auto;
    display: block;
}

/* Responsive - mostrar/ocultar logos según dispositivo */
@media (max-width: 768px) {
    .logo-full {
        display: none;
    }
    
    .logo-short {
        display: inline-block;
    }
}

@media (min-width: 769px) {
    .logo-full {
        display: inline-block;
    }
    
    .logo-short {
        display: none;
    }
}

/* Ajuste del contenedor del header para alinear logos */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Espaciado entre logo y selector de idiomas */
.language-selector {
    margin-left: 1rem;
}

/* ===== CHECKS EN VERDE PARA LA SECCIÓN SERVICIOS (HOME) ===== */

/* Estilo para las listas de beneficios en las tarjetas de servicios */
.service-includes ul li,
.service-ideal ul li {
    position: relative;
    padding-left: 1.8rem !important;
}

.service-includes ul li::before,
.service-ideal ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1rem;
    top: 0.2rem;
}

/* Mejorar la presentación de los textos */
.service-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

/* Ajuste para los títulos dentro de las tarjetas */
.service-card h3 {
    margin-bottom: 0.2rem;
}

/* Pequeño espacio entre secciones dentro de la tarjeta */
.service-includes,
.service-ideal {
    margin-top: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .service-includes ul li,
    .service-ideal ul li {
        font-size: 0.9rem;
    }
}

/* ===== CENTRAR BOTONES EN TARJETAS DE SERVICIOS (HOME) ===== */

/* Centrar el botón dentro de cada tarjeta */
.service-card .btn-service {
    display: block;
    margin: auto;
    text-align: center;
    width: fit-content;
    min-width: 180px;
}

/* Asegurar que la tarjeta tenga el botón alineado correctamente */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card .btn-service {
    margin-top: auto;
    align-self: center;
}

/* Responsive - mantener centrado en móvil */
@media (max-width: 768px) {
    .service-card .btn-service {
        width: 100%;
        min-width: auto;
        text-align: center;
    }
}

/* ===== ASSESSMENT WIDGET - PREGUNTA A PREGUNTA ===== */

.assessment-widget {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    margin: var(--spacing-lg) 0;
}

.assessment-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.assessment-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.assessment-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Widget container */
.widget-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.08);
    border: 1px solid rgba(149, 165, 166, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Progress bar */
.widget-progress {
    padding: var(--spacing-md) var(--spacing-md) 0;
}

.widget-step {
    font-size: 0.85rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.progress-bar {
    height: 4px;
    background-color: rgba(149, 165, 166, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-sand);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Pregunta */
.widget-question {
    padding: var(--spacing-md);
    min-height: 280px;
}

.question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

/* Opciones de respuesta */
.options-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem;
    background: rgba(233, 220, 205, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(149, 165, 166, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.option:hover {
    background: rgba(233, 220, 205, 0.2);
    border-color: var(--color-sand);
}

.option.selected {
    background: rgba(233, 220, 205, 0.3);
    border-color: var(--color-sand);
}

.option input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-dark);
}

.option label {
    flex: 1;
    cursor: pointer;
    color: var(--color-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Escala 1-5 */
.scale-group {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.scale-option {
    flex: 1;
    text-align: center;
}

.scale-btn {
    width: 100%;
    padding: 0.8rem 0;
    background: rgba(233, 220, 205, 0.1);
    border: 1px solid rgba(149, 165, 166, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
}

.scale-btn:hover {
    background: rgba(233, 220, 205, 0.2);
}

.scale-btn.selected {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: white;
}

.scale-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-accent);
    margin-top: 0.2rem;
}

/* Navegación */
.widget-navigation {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-top: 1px solid rgba(149, 165, 166, 0.1);
}

.btn-nav {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-dark);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-nav.btn-primary {
    background: var(--color-dark);
    color: white;
    border: none;
}

.btn-nav.btn-primary:hover:not(:disabled) {
    background: #1a252f;
    transform: translateY(-2px);
}

/* Footer del widget */
.widget-footer {
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(149, 165, 166, 0.1);
    background: #f9fafb;
}

.widget-stats {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.widget-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: rgba(233, 220, 205, 0.1);
    padding: var(--spacing-sm);
    border-radius: 12px;
    margin-top: var(--spacing-xs);
}

.preview-icon {
    font-size: 2rem;
}

.preview-text {
    text-align: left;
}

.preview-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.preview-text span {
    font-size: 0.75rem;
    color: var(--color-accent);
}

/* Pantalla de carga */
.widget-loading {
    text-align: center;
    padding: var(--spacing-lg);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(149, 165, 166, 0.2);
    border-top-color: var(--color-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-sm);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .widget-question {
        padding: var(--spacing-sm);
        min-height: auto;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .scale-group {
        flex-wrap: wrap;
    }
    
    .scale-option {
        flex: 1;
        min-width: 40px;
    }
    
    .scale-btn {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .widget-navigation {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
    
    .widget-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .preview-text {
        text-align: center;
    }
}

/* Estilos para los botones de opciones */
.option-btn {
    width: 100%;
    text-align: left;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(233, 220, 205, 0.1);
    border: 1px solid rgba(149, 165, 166, 0.2);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: all 0.2s ease;
}

.option-btn:hover {
    background: rgba(233, 220, 205, 0.2);
    border-color: var(--color-sand);
}

.option-btn.selected {
    background: rgba(233, 220, 205, 0.3);
    border-color: var(--color-sand);
    font-weight: 500;
}

.scale-group {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scale-item {
    text-align: center;
    flex: 1;
}

.scale-btn {
    width: 100%;
    padding: 0.8rem 0;
    background: rgba(233, 220, 205, 0.1);
    border: 1px solid rgba(149, 165, 166, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: all 0.2s ease;
}

.scale-btn:hover {
    background: rgba(233, 220, 205, 0.2);
}

.scale-btn.selected {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: white;
}

/* Estilos para campos de texto (nombre y email) */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(149, 165, 166, 0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: 0.3rem;
}