/* 
 * Service Narrative Design (SND)
 * Main Styles
 */


:root {
            /* Brand Variables - easily configurable */
            --primary: #D11A5A;
            --secondary: #21212A;
            --bg-color: #FFFFFF;
            --text-color: #111111;
            --muted-text: #555555;
            --border-color: #E6E6E6;
            
            /* Typography */
            --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            
            /* Layout */
            --max-width: 1120px;
            --section-padding: 72px;
            --radius: 2px;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--body-font);
            color: #F5F5F5;
            background: var(--secondary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(33, 33, 42, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 100;
        }

        nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--heading-font);
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: -0.02em;
        }

 .logo img {
    width: 70px; /* Ajusta el ancho según necesites */
    height: auto; /* Mantiene la proporción */
    display: block;
}

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(245, 245, 245, 0.7);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #FFFFFF;
        }

        .nav-links .btn-small {
            padding: 10px 20px;
            font-size: 15px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 8px 16px;
            font-family: var(--body-font);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #D72638;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(225, 31, 38, 0.25);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 2px solid var(--muted-text);
        }

        .btn-secondary:hover {
            background: var(--secondary);
			color: var(--muted-text);
            
        }

        .btn-small {
            padding: 12px 24px;
            font-size: 14px;
        }

        /* Section base */
        section {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: var(--section-padding) 24px;
        }

        






       /* Hero */
        .hero {
            text-align: center;
            padding: 60px 24px 80px;
        }

        .hero h1 {
            font-family: var(--heading-font);
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: #FFFFFF;
        }

        .hero .subhead {
            font-size: 24px;
            line-height: 1.4;
            color: #F5F5F5;
            max-width: 800px;
            margin: 0 auto 24px;
            font-weight: 500;
        }

        .hero .description {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(245, 245, 245, 0.8);
            max-width: 720px;
            margin: 0 auto 40px;
        }

        .hero-bullets {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 40px auto;
            max-width: 900px;
        }

        .hero-bullets li {
            font-size: 16px;
            color: #F5F5F5;
            font-weight: 500;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 100px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .hero-footnote {
            margin-top: 32px;
            font-size: 14px;
            color: rgba(245, 245, 245, 0.6);
            font-style: italic;
        }
		
		
.hero h1 {
    width: 100%;
    margin-bottom: 2rem; /* espacio antes de las columnas */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
	overflow: visible; /* Permite que el contenido se desborde */
}

.hero-content {
    /* El contenido existente quedará aquí */
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    /*align-items: center;*/
	align-items: flex-start; /* Cambia de center a flex-start */
    justify-content: center;
	position: relative; /* Necesario para usar transform */
    transform: translateX(60px); /* Mueve la imagen 40px a la derecha */
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /*border-radius: 8px;*/ /* opcional */
}

	
		
		

        /* Section headings */
        h2 {
            font-family: var(--heading-font);
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            color: #FFFFFF;
        }

        h3 {
            font-family: var(--heading-font);
            font-size: 24px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #F5F5F5;
        }

        /* Problem section */
        .problem {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 40px 48px;
        }

        .problem h2 {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 24px;
        }

        .problem-text {
            text-align: center;
            font-size: 18px;
            line-height: 1.7;
            color: rgba(245, 245, 245, 0.9);
            max-width: 800px;
            margin: 0 auto 24px;
        }

        .problem-bullets {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .problem-bullets li {
            font-size: 18px;
            line-height: 1.6;
            color: #F5F5F5;
            padding-left: 32px;
            position: relative;
        }

        .problem-bullets li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        /* Concept section */
        .concept {
            text-align: center;
        }

        .concept-text {
            font-size: 18px;
            line-height: 1.3;
            color: rgba(245, 245, 245, 0.9);
            max-width: 800px;
            margin: 0 auto 10px;
        }

        .highlight-box {
            background: var(--primary);
            color: white;
            padding: 10px 48px;
            border-radius: var(--radius);
            max-width: 800px;
            margin: 20px auto;
        }

        .highlight-box p {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.5;
            margin: 0;
        }

        /* Before/After */
        .before-after {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 48px;
            border-radius: var(--radius);
        }

        .before-after h2 {
            text-align: center;
            margin-bottom: 40px;
        }

        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto 32px;
        }

        .comparison-col h3 {
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        }

        .comparison-col ul {
            list-style: none;
        }

        .comparison-col li {
            font-size: 17px;
            line-height: 1.3;
            color: #F5F5F5;
            margin-bottom: 16px;
            padding-left: 28px;
            position: relative;
        }

        .comparison-col.before li:before {
            content: "✕";
            position: absolute;
            left: 0;
            color: rgba(245, 245, 245, 0.4);
        }

        .comparison-col.after li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        .comparison-note {
            text-align: center;
            font-size: 16px;
            color: rgba(245, 245, 245, 0.7);
            font-style: italic;
            margin-top: 32px;
        }

        /* Who section */
        .who-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 48px;
        }

        .who-col {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius);
            padding: 40px;
        }

        .who-col h3 {
            color: #FFFFFF;
            margin-bottom: 24px;
        }

        .who-col ul {
            list-style: none;
        }

        .who-col li {
            font-size: 16px;
            line-height: 1.3;
            color: rgba(245, 245, 245, 0.9);
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
        }

        .who-col.applies li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        .who-col.not-applies li:before {
            content: "—";
            position: absolute;
            left: 0;
            color: rgba(245, 245, 245, 0.5);
        }

        /* Process section */
        .process {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            border-radius: var(--radius);
            padding: 40px 48px;
        }

        .process h2 {
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }

        .process-steps {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .process-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .step-number {
            background: var(--primary);
            color: white;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
            padding-top: 4px;
        }

        .step-content p {
            font-size: 17px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .process-note {
            text-align: center;
            font-size: 16px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        /* FAQ */
        .faq {
            max-width: 800px;
            margin: 0 auto;
			padding-top: 0;
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-item {
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 5px;
        }

        .faq-answer {
            font-size: 17px;
            line-height: 1.3;
            color: rgba(245, 245, 245, 0.85);
        }

        /* Final CTA */
        .final-cta {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius);
            padding: 40px 48px;
            text-align: center;
			margin-bottom: 40px;
        }

        .final-cta h2 {
            max-width: 720px;
            margin: 0 auto 24px;
        }

        .final-cta-text {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(245, 245, 245, 0.9);
            max-width: 600px;
            margin: 0 auto 20px;
        }

        .final-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .contact-info {
            font-size: 14px;
            color: rgba(245, 245, 245, 0.6);
            margin-top: 24px;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            padding: 48px 24px;
            text-align: center;
        }

        .footer-quote {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            font-style: normal;
        }

        .footer-legal {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* SVG Diagram */
        .diagram-container {
            max-width: 800px;
            margin: 20px auto;
            padding: 5px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            box-shadow: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            :root {
                --section-padding: 48px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 80px 24px 64px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero .subhead {
                font-size: 20px;
            }

            .hero .description {
                font-size: 16px;
            }

            h2 {
                font-size: 32px;
            }

            .comparison {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .who-grid {
                grid-template-columns: 1fr;
            }

            .problem,
            .before-after,
            .process,
            .final-cta {
                padding: 48px 32px;
            }

            .hero-bullets {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-bullets li {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero .subhead {
                font-size: 18px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 15px;
            }

            h2 {
                font-size: 28px;
            }
        }
		
		
		/* Responsive: en móviles vuelve a una columna */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: 1; /* Opcional: muestra la imagen arriba en móvil usando -1*/
		transform: translateX(0); /* Resetea el desplazamiento en mobile */
    }
}