    :root {
        /* Tipografía */
        --font-base: 'Inter', sans-serif;

        /* Colores de Fondo */
        --bg-primary: #FCF9F9;
        /* Blanco cálido muy suave */
        --bg-surface: #FFFFFF;
        --bg-alt: #F9F3F4;
        --bg-badge: #F4E4E6;
        --bg-price-tag: #FCF5F6;
        --bg-btn-card: #F5EAEB;
        --bg-footer: #3D2D30;
        /* Marrón/Carbón oscuro cálido */

        /* Colores de Texto */
        --text-base: #3B2E30;
        --text-heading: #261A1C;
        --text-subhead: #785F63;
        --text-hero-p: #5A4347;
        --text-desc: #6E5358;
        --text-price-label: #A37F85;
        --text-price-value: #261A1C;
        --text-price-note: #A88D92;
        --text-btn-card: #4A3337;
        --text-footer: #E8DEDF;
        --text-inverse: #FFFFFF;

        /* Colores de Marca (Rose Gold) */
        --brand-primary: #B76E79;
        /* Rose Gold Clásico */
        --brand-primary-hover: #9E5B65;
        --brand-gradient-start: #C07C88;
        --brand-gradient-end: #D9A0A7;

        /* Bordes y Estados */
        --border-card: #EFE6E8;
        --border-card-hover: #E3D1D5;
        --border-contact: #EADBDD;
        --border-input: #E0CFD2;
        --focus-ring: rgba(183, 110, 121, 0.2);
    }

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

    body {
        font-family: var(--font-base);
        background-color: var(--bg-primary);
        color: var(--text-base);
        line-height: 1.5;
        scroll-behavior: smooth;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Tipografía y colores */
    h1,
    h2,
    h3 {
        font-weight: 700;
        line-height: 1.2;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: -0.02em;
        background-clip: text;
        -webkit-background-clip: text;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--text-heading);
    }

    .section-subhead {
        font-size: 1.1rem;
        color: var(--text-subhead);
        max-width: 720px;
        margin-bottom: 2rem;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: var(--brand-primary);
        color: var(--text-inverse);
        padding: 12px 28px;
        border-radius: 40px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--brand-primary);
        color: var(--brand-primary);
    }

    .btn-outline:hover {
        background-color: var(--brand-primary);
        color: var(--text-inverse);
    }

    .btn:hover {
        background-color: var(--brand-primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .hero {
        padding: 64px 0;
        min-height: 100vh;
        background: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        padding-right: 165px;
    }

    /* Header / Hero */
    .hero .container {
        width: 100%;
    }

    .hero-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        text-align: right;
        align-items: flex-end;
        margin-right: 167px;
    }

    .hero-content {
        width: 546px;

    }

    .hero-badge {
        background: var(--bg-badge);
        color: var(--brand-primary);
        font-weight: 600;
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 40px;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .hero-h1 {
        font-size: 3rem;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, var(--brand-gradient-start), var(--brand-gradient-end));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.27rem;
        color: #fff;
        margin: 1.5rem 0 2rem;
        max-width: 550px;
    }

    /* Estilos para las nuevas imágenes del Héroe */
    .hero-image-container {
        flex: 0.8;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        background-image: url('../assets/img/widescreen.png');
        background-size: cover;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        display: block;
        /* elimina espacio inferior */
        border-radius: 28px;
        /* consistente con las tarjetas de servicio */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
        /* sombra matching original */
        border: 1px solid var(--border-card);

        /* Lógica de altura para móviles para evitar que la imagen portrait se coma la pantalla */
        max-height: 80vh;
        object-fit: contain;
    }

    /* Sección servicios */
    .services-section {
        padding: 64px 0;
        background-color: var(--bg-surface);
        border-radius: 48px 48px 0 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-card {
        background: var(--bg-surface);
        border-radius: 28px;
        padding: 1.8rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
        border: 1px solid var(--border-card);
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
        border-color: var(--border-card-hover);
    }

    .service-icon {
        font-size: 2.4rem;
        color: var(--brand-primary);
        margin-bottom: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .service-desc {
        color: var(--text-desc);
        margin: 0.75rem 0 1.2rem;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .price-tag {
        margin: 1rem 0 1.2rem;
        background: var(--bg-price-tag);
        padding: 0.75rem 1rem;
        border-radius: 20px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .price-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        color: var(--text-price-label);
    }

    .price-value {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text-price-value);
        line-height: 1.2;
    }

    .price-note {
        font-size: 0.7rem;
        color: var(--text-price-note);
        margin-top: 4px;
    }

    .btn-card {
        width: 100%;
        background-color: var(--bg-btn-card);
        color: var(--text-btn-card);
        font-weight: 600;
        border: none;
        border-radius: 40px;
        padding: 10px;
        cursor: pointer;
        transition: 0.2s;
        margin-top: 8px;
        font-size: 0.9rem;
    }

    .btn-card:hover {
        background-color: var(--brand-primary);
        color: var(--text-inverse);
    }

    /* Sección diferencial LATAM */
    .latam-value {
        background: var(--bg-alt);
        padding: 56px 0;
    }

    .value-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .value-item {
        background: var(--bg-surface);
        border-radius: 24px;
        padding: 1.5rem;
        text-align: center;
        flex: 1;
        min-width: 200px;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
    }

    .value-item i {
        font-size: 2rem;
        color: var(--brand-primary);
        margin-bottom: 1rem;
    }

    /* Contacto */
    .contact-section {
        padding: 72px 0;
        background: var(--bg-surface);
    }

    .contact-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        background: var(--bg-primary);
        border-radius: 48px;
        padding: 2rem;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
        border: 1px solid var(--border-contact);
    }

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1.2;
    }

    .form-group {
        margin-bottom: 1.4rem;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 14px 18px;
        border-radius: 24px;
        border: 1px solid var(--border-input);
        font-family: var(--font-base);
        background: var(--bg-surface);
        transition: 0.2s;
        font-size: 0.95rem;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 3px var(--focus-ring);
    }

    button[type="submit"] {
        background: var(--brand-primary);
        color: var(--text-inverse);
        border: none;
        width: 100%;
        padding: 14px;
        font-weight: 700;
        font-size: 1rem;
    }

    .footer {
        background: var(--bg-footer);
        color: var(--text-footer);
        text-align: center;
        padding: 32px 0;
        font-size: 0.85rem;
    }

    .text-shadow-border {
        font-size: 4rem;
        font-weight: bold;
        color: white;
        /* The fill color of the text */
        text-shadow:
            -2px -2px 0 #000,
            /* Top Left */
            2px -2px 0 #000,
            /* Top Right */
            -2px 2px 0 #000,
            /* Bottom Left */
            2px 2px 0 #000;
        /* Bottom Right */
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2.2rem;
        }

        h2 {
            font-size: 1.7rem;
        }

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

        .contact-grid {
            flex-direction: column;
            padding: 1.5rem;
        }

        .price-value {
            font-size: 1.5rem;
        }

        .hero {
            height: 100vh;
                    padding: 40px 0;
        }

        .hero-background {
            background-image: url(../assets/img/mobile.png);
            background-size: cover;
        }

        .hero-grid {
            flex-direction: row;
            /* imagen sobre texto en móvil */
            text-align: center;
            gap: 2rem;
            height: 100%;
            margin: 0;
            padding: 10px;
        }

        .hero-content {
            margin-bottom: 0;
            padding-bottom: 2rem;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
            margin: 10px;
        }

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            max-width: 100%;
        }

        .hero-image-container {
            flex: none;
            width: 100%;
            margin-bottom: 2rem;
        }

        .hero-img {
            max-height: 50vh;
            /* restringe la altura de la imagen portrait en móvil */
            object-fit: contain;
        }

        .btn-hero {
            align-items: flex-end;
        }

        .hero-badge {
            align-self: flex-start;
        }
    }