﻿/* =========================
   FUENTES Y BASE
========================= */
body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background-color: #fff;
    color: #111;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

main.flex-fill {
    flex: 1;
}



/* =========================================
   1. CSS RESET BÁSICO (SOLUCIONA FRANJAS GRISES)
   ========================================= */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* Si tienes un fondo gris en algún lado, este lo anula */
    background-color: #fff;
}


/* =========================================
   2. HERO PRINCIPAL DINÁMICO
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    font-family: 'Helvetica Neue', sans-serif;
    width: 100%; /* Asegura cobertura horizontal total */
}

/* Carousel */
.hero__carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Cada slide */
.hero__slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover; /* Cubre todo el hero */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
}

    .hero__slide.active {
        opacity: 1;
        visibility: visible;
    }

/* Contenido centrado */
.hero__content {
    max-width: 85%;
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 20px;
    opacity: 0;
    animation: fadeInUpPremium 1.2s ease forwards;
}

.hero__slide.active .hero__content {
    opacity: 1;
}

/* Títulos y párrafos */
.hero__content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
    animation: glowText 2s ease-in-out infinite alternate, fadeInDown 1.5s ease forwards;
}

    .hero__content h1 span {
        color: #f8e9a1; /* Tono dorado/claro para destacar */
    }

.hero__content p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    animation: fadeInUp 1.5s ease forwards;
}

/* Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente oscuro para asegurar legibilidad del texto blanco */
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot-line {
    position: relative;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
}

    .dot-line.active {
        background: rgba(255, 255, 255, 0.8);
    }

.progress {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #C8A56E; /* Dorado */
    transition: width linear;
}


/* =========================================
   3. ANIMACIONES (HERO)
   ========================================= */

@keyframes fadeInUpPremium {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(200,165,110,0.6);
    }

    to {
        text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 30px rgba(200,165,110,0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   4. RESPONSIVO (HERO)
   ========================================= */

@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 2.5rem;
    }

    .hero__content p {
        font-size: 1.2rem;
    }
}


/* =========================
   HERO PRINCIPAL
========================= */
/*.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    font-family: 'Helvetica Neue', sans-serif;
}*/

/* Carousel */
/*.hero__carousel {
    position: relative;
    height: 100%;
    width: 100%;
}*/

/* Cada slide */
/*.hero__slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;*/ /* Cubre todo el hero */
    /*background-position: center;*/ /* Centra la imagen */
    /*background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
}

    .hero__slide.active {
        opacity: 1;
        visibility: visible;
    }*/

/* Contenido centrado */
/*.hero__content {
    max-width: 85%;
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 20px;
    opacity: 0;
    animation: fadeInUpPremium 1.2s ease forwards;
}

.hero__slide.active .hero__content {
    opacity: 1;
}*/

/* Títulos y párrafos */
/*.hero__content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
    animation: glowText 2s ease-in-out infinite alternate, fadeInDown 1.5s ease forwards;
}

    .hero__content h1 span {
        color: #f8e9a1;
    }

.hero__content p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    animation: fadeInUp 1.5s ease forwards;
}*/

/* Overlay */
/*.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}*/

/* Carousel Indicators */
/*.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot-line {
    position: relative;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
}

    .dot-line.active {
        background: rgba(255, 255, 255, 0.8);
    }

.progress {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #C8A56E;
    transition: width linear;
}*/

/* Animaciones */
/*@keyframes fadeInUpPremium {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(200,165,110,0.6);
    }

    to {
        text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 30px rgba(200,165,110,0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 2.5rem;
    }

    .hero__content p {
        font-size: 1.2rem;
    }
}*/




/* =========================
   BOTÓN WHATSAPP FLOTANTE
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

    .whatsapp-float a {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #25D366;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 28px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        position: relative;
    }

        .whatsapp-float a:hover {
            background-color: #1ebe57;
            transform: translateY(-3px);
        }

/* TOOLTIP */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}




/* =========================
   SECCIONES GENERALES
========================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in.delay-1 {
        transition-delay: 0.2s;
    }

    .fade-in.delay-2 {
        transition-delay: 0.4s;
    }

    .fade-in.delay-3 {
        transition-delay: 0.6s;
    }

    .fade-in.delay-4 {
        transition-delay: 0.8s;
    }

    .fade-in.delay-5 {
        transition-delay: 1s;
    }


/* Back-to-top flotante ajustado */
.back-to-top-btn {
    position: fixed;
    bottom: 80px; /* sube un poco para no chocar con WhatsApp */
    right: 20px; /* mantén la derecha si quieres */
    background: #C8A56E;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 99;
    text-decoration: none;
}

    .back-to-top-btn:hover {
        transform: translateY(-5px);
    }




/* =========================
   Responsive generales
========================= */
@media (max-width: 1024px) {
    .hero__content h1 {
        font-size: 3rem;
    }

    .hero__content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero__content h1 {
        font-size: 2.4rem;
    }

    .hero__content p {
        font-size: 1.2rem;
    }

    .dot-line {
        width: 30px;
    }
}



/* =========================
   SECCIONES PERSONALIZADAS (Sobre Nosotros, CTA, Cómo Trabajamos, Testimonios, Productos Destacados, Makilovers, Experiencia, Galería, Ubicación)
========================= */

/* --- Todas las secciones se mantienen exactamente como en tu CSS original --- */
/* Esto incluye: .experience, .special-section, .how-we-work, .testimonials, .featured, .makilover, .gallery, .location */
/* Se respetan: grid layouts, hover effects, badges, overlays, lightbox, responsivos, animaciones, colores, tipografía */


/* =========================
   SOBRE NOSOTROS
========================= */
.experience.about {
    background-color: #fff;
    padding: 80px 10%;
}

.experience__content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.experience__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    position: relative;
}

    .experience__title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: #C8A56E;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.experience__subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.exp-item {
    background: #fdfdfd;
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

    .exp-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        background: #fff9f1; /* ligero cambio para destacar hover */
    }

.exp-icon {
    font-size: 2.5rem;
    color: #C8A56E;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.exp-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111;
}

.exp-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover icon effect */
.experience__grid .exp-item:hover .exp-icon {
    transform: scale(1.2);
    color: #e6c68d; /* tono dorado más claro */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .experience__grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .experience__grid {
        flex-direction: column;
        align-items: center;
    }
}





/* =========================
   CTA MODERNA CON RECTÁNGULO GRANDE GIRATORIO
========================= */
/*.special-section {
    position: relative;
    padding: 60px 10%;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 20px;
    margin: 40px 0;
    overflow: hidden;
}*/

/* Fondo rectángulo grande giratorio */
/*.special-bg-rect {
    position: absolute;
    width: 120%;
    height: 200%;
    border: 4px solid rgba(200, 165, 110, 0.2);
    top: -50%;
    left: -10%;
    transform: rotate(0deg);
    animation: rotateRect 40s linear infinite;
    border-radius: 20px;
    z-index: 0;
}*/

/* Animación rotación lenta */
/*@keyframes rotateRect {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Fade-in */
/*.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }*/

/* Contenido encima del fondo */
/*.special-section .section-header,
.special-buttons {
    position: relative;
    z-index: 1;
}

.special-section .section-header {
    margin-bottom: 30px;
}

.special-section .section-subtitle {
    color: #C8A56E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}

    .special-section .section-subtitle i {
        margin-right: 8px;
    }

.special-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.special-section .section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.special-buttons {
    margin-top: 20px;
}

    .special-buttons a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 30px;
        margin: 10px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

.btn-gold {
    background: #C8A56E;
    color: #fff;
}

    .btn-gold:hover {
        background: linear-gradient(45deg, #C8A56E, #b69150);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.btn-outline {
    background: transparent;
    border: 2px solid #C8A56E;
    color: #C8A56E;
}

    .btn-outline:hover {
        background: #f5f5f5;
        transform: translateY(-3px);
    }*/

/* Back-to-top flotante */
/*.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #C8A56E;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    z-index: 99;
    text-decoration: none;
}

    .back-to-top-btn:hover {
        transform: translateY(-5px);
    }*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .special-section {
        padding: 40px 5%;
    }

        .special-section .section-title {
            font-size: 2rem;
        }

        .special-section .section-description {
            font-size: 1rem;
        }

    .special-buttons a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}*/


/* ==============================
   CTA PREMIUM MODERNA
============================== */

/*.special-section-premium {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
    color: #333;*/ /* texto oscuro sobre fondo suave */
/*background: linear-gradient(135deg, #fbe8d3, #ffe1c6);*/ /* degradado cálido y suave */
/*}

    .special-section-premium .special-bg-pattern {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('/images/pattern.svg') repeat;
        opacity: 0.03;
        transform: rotate(25deg);
        z-index: 0;
    }

    .special-section-premium .section-subtitle {
        font-size: 1.2rem;
        font-weight: 500;
        color: #a67c52;*/ /* tono marrón suave */
/*margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .special-section-premium .section-subtitle i {
            margin-right: 6px;
            color: #a67c52;
        }

    .special-section-premium .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #523a28;*/ /* marrón más profundo */
/*}

    .special-section-premium .section-description {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #6b4c3b;*/ /* marrón medio */
/*max-width: 700px;
        margin: 0 auto 40px auto;
    }

    .special-section-premium .special-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

        .special-section-premium .special-buttons .btn-gold {
            padding: 14px 32px;
            background-color: #e0a96d;*/ /* dorado suave */
/*color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }

        .special-section-premium .special-buttons .btn-outline {
            padding: 14px 32px;
            border: 2px solid #e0a96d;
            color: #e0a96d;
            background: transparent;
            font-weight: 600;
            border-radius: 50px;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }

            .special-section-premium .special-buttons .btn-gold:hover,
            .special-section-premium .special-buttons .btn-outline:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(224, 169, 109, 0.4);
            }*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .special-section-premium {
        padding: 80px 15px 60px;
    }

        .special-section-premium .section-title {
            font-size: 2.2rem;
        }

        .special-section-premium .section-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }
}

@media (max-width: 480px) {
    .special-section-premium .special-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .special-section-premium .section-title {
        font-size: 1.9rem;
    }

    .special-section-premium .section-description {
        font-size: 0.95rem;
    }
}*/






/* =========================
   CTA PREMIUM LUMINOSO
========================= */
.special-section-premium {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #2b2b2b;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(250, 250, 250, 0.9)), url('/images/bg-cta-premium.jpg') center/cover no-repeat;
}

    /* Patrón sutil japonés dorado translúcido */
    .special-section-premium .special-bg-pattern {
        position: absolute;
        inset: 0;
        background: url('/images/pattern-japanese-gold.png') repeat;
        opacity: 0.04;
        mix-blend-mode: multiply;
        z-index: 0;
    }

    /* Contenido centrado */
    .special-section-premium .section-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Tipografía y detalles */
    .special-section-premium .section-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
        color: #b38728;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .special-section-premium .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Noto Serif JP', serif;
        color: #1a1a1a;
    }

    .special-section-premium .section-description {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    /* Botones */
    .special-section-premium .special-buttons a {
        display: inline-block;
        padding: 14px 36px;
        margin: 0 12px;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 40px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f2d675);
    color: #000;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

    .btn-gold:hover {
        background: linear-gradient(135deg, #f7e38b, #d4af37);
        box-shadow: 0 4px 16px rgba(241, 201, 78, 0.6);
        transform: translateY(-2px);
    }

.btn-outline {
    border: 2px solid #d4af37;
    color: #b38728;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

    .btn-outline:hover {
        background: #d4af37;
        color: #000;
        box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
        transform: translateY(-2px);
    }

/* Animación */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards;
}

    .fade-in.delay-1 {
        animation-delay: 0.4s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .special-section-premium {
        padding: 80px 20px;
    }

        .special-section-premium .section-title {
            font-size: 2.2rem;
        }

        .special-section-premium .section-description {
            font-size: 1rem;
        }

        .special-section-premium .special-buttons a {
            display: block;
            margin: 10px auto;
            width: 80%;
        }
}








/* ==============================
   EXPERIENCE TIMELINE HORIZONTAL
   ============================== */
.experience-timeline-horizontal {
    padding: 60px 20px;
    text-align: center;
}

    .experience-timeline-horizontal .timeline-horizontal {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
        margin-top: 50px;
        gap: 40px;
    }

        .experience-timeline-horizontal .timeline-horizontal::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 4px;
            background-color: #e74c3c;
            transform: translateY(-50%);
            z-index: 1;
            border-radius: 2px;
        }

    .experience-timeline-horizontal .timeline-item {
        position: relative;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        flex: 1 1 200px;
        max-width: 250px;
        z-index: 2;
        text-align: center;
    }

        .experience-timeline-horizontal .timeline-item .timeline-icon {
            width: 60px;
            height: 60px;
            background-color: #e74c3c;
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            margin: 0 auto 15px auto;
        }

        .experience-timeline-horizontal .timeline-item .timeline-content h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .experience-timeline-horizontal .timeline-item .timeline-content p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .experience-timeline-horizontal .timeline-horizontal {
        flex-wrap: wrap;
    }

    .experience-timeline-horizontal .timeline-item {
        margin-bottom: 20px;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .experience-timeline-horizontal .timeline-horizontal {
        flex-direction: column;
        align-items: center;
    }

        .experience-timeline-horizontal .timeline-horizontal::before {
            display: none;
        }

    .experience-timeline-horizontal .timeline-item {
        max-width: 90%;
    }
}






/* =========================
   CÓMO HACEMOS NUESTROS ROLLS - HORIZONTAL TIMELINE PREMIUM
   ========================= */
/*.experience-timeline {
    padding: 60px 20px;
    background-color: #fafafa;
}

    .experience-timeline .experience__content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }*/

/* Títulos y subtítulos */
/*.experience-timeline .experience__subtitle {
        font-size: 1.2rem;
        color: #e74c3c;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .experience-timeline .experience__title {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .experience-timeline .experience__tagline {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 50px;
    }*/

/* Timeline horizontal */
/*.experience-timeline .timeline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        margin-top: 50px;
    }*/

/* Línea de conexión */
/*.experience-timeline .timeline::before {
            content: '';
            position: absolute;
            top: 35px;*/ /* mitad del icono */
/*left: 5%;
            width: 90%;
            height: 4px;
            background-color: #e74c3c;
            z-index: 1;
            border-radius: 2px;
        }*/

/* Cada paso */
/*.experience-timeline .timeline-item {
        position: relative;
        width: 23%;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        z-index: 2;
    }*/

/* Icono del paso */
/*.experience-timeline .timeline-item .timeline-icon {
            width: 60px;
            height: 60px;
            background-color: #e74c3c;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 1.5rem;
            position: absolute;
            top: -30px;*/ /* medio icono sobre caja */
/*left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }*/

/* Contenido del paso */
/*.experience-timeline .timeline-item .timeline-content h3 {
            margin-top: 40px;*/ /* espacio debajo del icono */
/*font-size: 1.25rem;
            color: #333;
        }

        .experience-timeline .timeline-item .timeline-content p {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-top: 10px;
        }*/

/* RESPONSIVE */
/*@media (max-width: 992px) {
    .experience-timeline .timeline {
        flex-direction: column;
        align-items: center;
    }

        .experience-timeline .timeline::before {
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
        }

    .experience-timeline .timeline-item {
        width: 80%;
        margin-bottom: 50px;
    }

        .experience-timeline .timeline-item .timeline-icon {
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }
}

@media (max-width: 480px) {
    .experience-timeline .experience__title {
        font-size: 2rem;
    }

    .experience-timeline .experience__subtitle,
    .experience-timeline .experience__tagline {
        font-size: 1rem;
    }

    .experience-timeline .timeline-item {
        width: 90%;
        padding: 15px;
    }
}*/









/* =========================
   CÓMO TRABAJAMOS
========================= */
/*.how-we-work {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.how-we-work__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.how-we-work__card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .how-we-work__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .how-we-work__card i {
        font-size: 40px;
        color: #C8A56E;
        margin-bottom: 15px;
    }

    .how-we-work__card h3 {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .how-we-work__card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .how-we-work__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 5%;
    }
}*/






/* =========================
   TESTIMONIOS
========================= */
.testimonials {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: #C8A56E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}

    .section-subtitle i {
        color: #C8A56E;
        margin-right: 8px;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de testimonios */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

/* Tarjeta de testimonio */
.testimonial-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

/* Icono de cita */
.testimonial-icon {
    font-size: 2rem;
    color: #C8A56E;
    margin-bottom: 15px;
}

/* Texto de testimonio */
.testimonial-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Autor del testimonio */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #333;
    }

    .testimonial-author span {
        font-size: 0.9rem;
        color: #999;
    }

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}





/* =========================
   PRODUCTOS DESTACADOS PREMIUM
========================= */
.featured {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: #C8A56E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}

    .section-subtitle i {
        color: #C8A56E;
        margin-right: 8px;
    }

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}


.featured__card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .featured__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.featured__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.featured__card:hover .featured__overlay {
    transform: translateY(0);
}


/* GRID */
.featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px); /* ancho fijo */
    gap: 30px;
    justify-content: center; /* centra el grid */
}


/* TARJETAS */
.featured__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    height: 480px; /* altura fija para uniformidad */
}

    .featured__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

/* IMAGEN */
.featured__image-container {
    position: relative;
    height: 55%; /* proporción fija */
    overflow: hidden;
}

.featured__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 4px solid #C8A56E;
    transition: transform 0.5s ease;
}

.featured__card:hover img {
    transform: scale(1.08);
}

/* BADGES */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: badge-pulse 1.5s infinite;
}

    .badge.new {
        background: linear-gradient(135deg, #28a745, #4cd964);
    }

    .badge.offer {
        background: linear-gradient(135deg, #e63946, #ff4e50);
        top: 40px;
    }

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* INFO */
.featured__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .featured__info h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
        display: flex;
        align-items: center;
    }

        .featured__info h3 i {
            color: #C8A56E;
            margin-right: 6px;
        }

    .featured__info p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
        flex-grow: 1;
    }

/* PRECIO */
.price {
    margin-bottom: 15px;
}

.offer-price {
    color: #e63946;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.price-value {
    font-weight: bold;
    font-size: 1.2rem;
    color: #C8A56E;
}

/* LINKS DE PRODUCTO */
.product-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .product-links a {
        display: inline-block;
        background: #C8A56E;
        color: #fff;
        border-radius: 50px;
        padding: 8px 14px;
        font-size: 0.9rem;
        margin: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .product-links a:hover {
            background: #b69150;
            transform: translateY(-2px);
        }

    .product-links i {
        margin-right: 6px;
    }

/* BOTÓN VER MENÚ */
.view-menu {
    margin-top: 40px;
}

.btn-gold {
    background: linear-gradient(45deg, #C8A56E, #b69150);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background: linear-gradient(45deg, #b69150, #C8A56E);
        transform: translateY(-3px);
    }

    .btn-gold i {
        margin-right: 8px;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .featured__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .featured {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .featured__card {
        height: auto;
    }

    .featured__image-container {
        height: 200px;
    }
}





/* =========================
   MAKI LOVERS
========================= */

.makilover {
    background: linear-gradient(135deg, #fff8f0, #fef6e0);
    padding: 60px 10%;
    text-align: center;
}

    .makilover .section-title {
        font-size: 2.5rem;
        color: #C8A56E;
    }

    .makilover .section-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

.makilover__links a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-social.instagram {
    background: #E4405F;
}

.btn-social.facebook {
    background: #1877F2;
}

.btn-social.whatsapp {
    background: #25D366;
}

.btn-social:hover {
    opacity: 0.85;
}

.makilover__gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

    .makilover__gallery img {
        border-radius: 12px;
        width: 150px;
        height: 150px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

        .makilover__gallery img:hover {
            transform: scale(1.05);
        }





/* =========================
   EXPERIENCIA MAKIWARA
========================= */
.experience {
    padding: 80px 10%;
    background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
    text-align: center;
}

.experience__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.experience__subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #C8A56E;
    margin-bottom: 8px;
}

.experience__tagline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

Grid de experiencia
.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

Items de experiencia
.exp-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
}

.exp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.exp-icon {
    font-size: 2.8rem;
    color: #C8A56E;
    background: linear-gradient(135deg, #f5f5f5, #eee);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.exp-item:hover .exp-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #C8A56E, #b69150);
    color: white;
}

.exp-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.exp-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

Responsive
@media (max-width: 1024px) {
    .experience__grid

{
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

}

@media (max-width: 768px) {
    .experience {
        padding: 60px 5%;
    }

    .experience__title {
        font-size: 2.4rem;
    }

    .experience__subtitle {
        font-size: 1.2rem;
    }

    .experience__tagline {
        font-size: 1rem;
    }
}













/* ==============================
   GALERÍA PÚBLICA - HOME/INDEX
   ============================== */

section.gallery {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery .section-subtitle {
    font-size: 1rem;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery .section-title {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery .section-description {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* === GRID DE IMÁGENES === */
.gallery__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery__item {
    flex: 1 1 280px;
    max-width: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

    .gallery__item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery__item img:hover {
        transform: scale(1.05);
    }

/* === BOTÓN “VER GALERÍA COMPLETA” === */
.gallery .view-more {
    display: inline-block;
    margin-top: 60px; /* <- aumenté para separar del grid */
    padding: 12px 28px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .gallery .view-more:hover {
        background-color: #c0392b;
        transform: scale(1.05);
    }

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

/* === CONTROLES DE LIGHTBOX === */
.lightbox-content {
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

    .lightbox-close:hover {
        color: #e74c3c;
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s ease;
    padding: 10px 15px;
    border-radius: 50%;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(231, 76, 60, 0.8);
    }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    section.gallery {
        padding: 40px 15px;
        margin: 60px auto;
    }

    .gallery .section-title {
        font-size: 2rem;
    }

    .gallery .section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .gallery__item {
        flex: 1 1 45%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery__item {
        flex: 1 1 100%;
    }
}







/* =========================
   SECCIÓN DE CONTACTO - HOME/INDEX
========================= */

.home-contact {
    background-color: #fafafa;
    padding: 80px 20px;
}

.home-contact__header {
    text-align: center;
    margin-bottom: 50px;
}

    .home-contact__header .section-subtitle {
        font-weight: 500;
        color: #C8A56E;
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .home-contact__header .section-title {
        font-size: 32px;
        font-weight: 600;
        color: #222;
        margin-bottom: 12px;
    }

    .home-contact__header .section-description {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

/* CONTENIDO */
.home-contact__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

/* FORMULARIO */
.home-contact__form {
    flex: 1 1 55%;
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .home-contact__form:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }

    .home-contact__form .form-group {
        margin-bottom: 18px;
    }

    .home-contact__form input,
    .home-contact__form textarea {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .home-contact__form input:focus,
        .home-contact__form textarea:focus {
            border-color: #d4af37;
            outline: none;
            box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
        }

.btn-gold {
    background: linear-gradient(135deg, #C8A56E, #FF4500);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background: linear-gradient(135deg, #a8874c, #e03e00);
        transform: scale(1.05);
    }

/* INFORMACIÓN DE CONTACTO */
.home-contact__info {
    flex: 1 1 40%;
    text-align: left;
}

    .home-contact__info p {
        margin: 12px 0;
        font-size: 15px;
        display: flex;
        align-items: center;
        color: #444;
    }

    .home-contact__info i {
        color: #d4af37;
        margin-right: 12px;
        font-size: 18px;
    }

/* BACK TO TOP */
.back-to-top {
    margin-top: 40px;
    text-align: center;
}

    .back-to-top a {
        color: #C8A56E;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .back-to-top a:hover {
            color: #FF4500;
            text-decoration: underline;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-contact__container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .home-contact__form,
    .home-contact__info {
        flex: 1 1 100%;
        text-align: center;
    }

        .home-contact__info p {
            justify-content: center;
        }
}







/* =========================
   UBICACIÓN
========================= */
.location {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

    .location .section-header {
        margin-bottom: 40px;
    }

    .location .section-subtitle {
        color: #C8A56E;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

        .location .section-subtitle i {
            margin-right: 8px;
        }

    .location .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .location .section-description {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Contenido de ubicación */
.location__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-container {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.location__button {
    margin-top: 20px;
}

    .location__button .btn-gold {
        background: #C8A56E;
        color: white;
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 50px;
        font-weight: bold;
        transition: background 0.3s ease;
        text-decoration: none;
    }

        .location__button .btn-gold:hover {
            background: #b59258;
        }

/* Responsive */
@media (max-width: 1024px) {
    .location .section-title {
        font-size: 2.2rem;
    }

    .location .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .location {
        padding: 60px 5%;
    }

        .location .section-title {
            font-size: 2rem;
        }

        .location .section-description {
            font-size: 0.95rem;
        }

    .location__content {
        gap: 15px;
    }
}









/* =========================
   ANIMACIÓN FADE-IN CON RETARDO
========================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Retardos progresivos */
    .fade-in.delay-1 {
        transition-delay: 0.2s;
    }

    .fade-in.delay-2 {
        transition-delay: 0.4s;
    }

    .fade-in.delay-3 {
        transition-delay: 0.6s;
    }

    .fade-in.delay-4 {
        transition-delay: 0.8s;
    }

    .fade-in.delay-5 {
        transition-delay: 1s;
    }


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.flex-fill {
    flex: 1;
}




.back-to-top {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

    .back-to-top a {
        font-size: 16px;
        color: var(--accent);
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .back-to-top a i {
            margin-right: 8px;
        }

        .back-to-top a:hover {
            color: var(--highlight);
            transform: translateY(-2px);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* === IDENTIFICADORES VISUALES DE SECCIONES (versión refinada) === */

section {
    position: relative;
    padding-top: 60px; /* antes 80px */
    padding-bottom: 60px; /* antes 80px */
}

/* Separador suave entre secciones */
.section-divider {
    width: 100%;
    height: 40px; /* antes 60px */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.06) 100%);
    margin-top: -25px; /* antes -40px */
    margin-bottom: 25px; /* antes 40px */
}

/* Colores tenues alternos */
section:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.96);
}

section:nth-of-type(even) {
    background-color: rgba(248, 248, 248, 0.92);
    backdrop-filter: blur(5px);
}

/* Encabezado elegante con línea decorativa dorada */
.section-header {
    text-align: center;
    margin-bottom: 30px; /* antes 40px */
}

    .section-header::after {
        content: "";
        display: block;
        width: 70px;
        height: 2.5px;
        background-color: #c7a45d;
        margin: 12px auto 0;
        border-radius: 3px;
    }


/* =========================================
   SEPARADOR SUTIL Y ELEGANTE (AJUSTADO)
   ========================================= */
.section-divider--elegant {
    /* Altura mínima, solo una línea fina */
    height: 1px;
    width: 90%;
    max-width: 1200px;
    /* CAMBIO CLAVE: Reducción de margin vertical para más sutileza */
    margin: 15px auto; /* 20px arriba y abajo (puedes bajarlo a 15px si quieres) */
    /* El toque de elegancia: Gradiente dorado muy sutil */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #e0ba55 35%, #b38728 50%, #e0ba55 65%, rgba(0, 0, 0, 0) 100% );
    opacity: 0.7;
}
