/* ============================================================
   SALÓN AMANDA — CSS Principal
   Desarrollado por GoGoDevS
============================================================ */

/* ============================================================
   VARIABLES
============================================================ */
:root {
    --color-bg:           #FAFAF8;
    --color-black:        #1a1a1a;
    --color-teal-light:   #E0F7FA;
    --color-teal:         #00BFC8;
    --color-gold:         #C9A84C;
    --color-gray:         #6B7280;
    --color-white:        #ffffff;
    --color-whatsapp:     #25D366;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Lato', system-ui, sans-serif;

    --navbar-height: 68px;
    --transition:    0.3s ease;
    --radius:        12px;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg:     0 12px 48px rgba(0,0,0,0.14);
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; }


/* ============================================================
   GLOBAL — SELECTION, SCROLLBAR, CURSOR, FOCUS
============================================================ */
::selection        { background: var(--color-teal-light); color: var(--color-black); }
::-moz-selection   { background: var(--color-teal-light); color: var(--color-black); }

::-webkit-scrollbar             { width: 8px; }
::-webkit-scrollbar-track       { background: #E0F7FA; }
::-webkit-scrollbar-thumb       { background: var(--color-teal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #009aa3; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

a, button, [role="button"],
.gallery-item, .team-card, .service-card, .product-card,
.navbar-toggler, .navbar-cta, .social-link,
.whatsapp-float, .instagram-float, .btn { cursor: pointer; }


/* ============================================================
   NAVBAR
============================================================ */
#mainNavbar {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
    height: var(--navbar-height);
    padding: 0 1rem;
}

#mainNavbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255,255,255,0.08);
    background: rgba(10,10,10,0.99);
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.02em;
}

.navbar-nav .nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.45rem 0.75rem !important;
    transition: color var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 1.5px;
    background: var(--color-teal);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-nav .nav-link:hover { color: var(--color-teal) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--color-teal) !important; }

.navbar-cta {
    font-size: 0.85rem !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition) !important;
}
.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26,26,26,0.25);
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
    background: transparent;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    margin: 4px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10,10,10,0.98);
        border-radius: var(--radius);
        padding: 1rem 1.25rem;
        margin-top: 0.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-cta {
        display: block !important;
        text-align: center;
        margin-top: 0.75rem;
    }
}


/* ============================================================
   SECCIÓN — ELEMENTOS COMUNES
============================================================ */
section { padding: 6rem 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 0;
}

.section-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.85;
    margin-bottom: 0;
}


/* ============================================================
   HERO
============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #050b0c;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 55%, rgba(201,168,76,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 25%, rgba(0,191,200,0.10) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 60% 85%, rgba(201,168,76,0.10) 0%, transparent 50%);
    z-index: 1;
}

/* Patrón de puntos sutiles */
.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, #E0F7FA 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: var(--navbar-height);
}

/* Animaciones de entrada del hero */
@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content .hero-badge   { transition-delay: 0.10s; }
.hero-content .hero-title   { transition-delay: 0.25s; }
.hero-content .hero-subtitle{ transition-delay: 0.42s; }
.hero-content .hero-buttons { transition-delay: 0.58s; }

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201,168,76,0.45);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.12;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(250,250,248,0.80);
    line-height: 1.75;
    margin-bottom: 2.75rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-hero-primary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255,255,255,0.45);
    background: transparent;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    color: var(--color-white);
    transform: translateY(-3px);
}

.hero-arrow {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounceArrow 2.2s ease-in-out infinite;
}
.hero-arrow a {
    color: rgba(255,255,255,0.55);
    font-size: 1.6rem;
    text-decoration: none;
    transition: color var(--transition);
    display: block;
}
.hero-arrow a:hover { color: rgba(255,255,255,0.9); }

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}


/* ============================================================
   BOOKING
============================================================ */
.booking-section {
    background: linear-gradient(180deg, var(--color-teal-light) 0%, var(--color-white) 100%);
}

.booking-calendar-icon {
    display: block;
    font-size: 4.5rem;
    color: var(--color-teal);
    opacity: 0.18;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.btn-booking-primary {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 1rem 2.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-booking-primary:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,191,200,0.35);
}

.booking-separator {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 1rem 0 0.25rem;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.925rem;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-whatsapp:hover {
    background-color: #1db954;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.38);
}

.booking-info {
    display: flex;
    align-items: center;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.booking-info-item {
    font-size: 0.85rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
}
.booking-info-sep {
    color: rgba(0,0,0,0.2);
    font-size: 1rem;
}


/* ============================================================
   PROFESIONALES
============================================================ */
.team-section {
    background-color: var(--color-white);
}

.team-card {
    text-align: center;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    background: var(--color-bg);
    transition: all var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-photo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,191,200,0.25);
    display: block;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.team-name-line {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.4rem auto 0.75rem;
    border-radius: 1px;
}

.team-specialty {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.team-bio {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}


/* ============================================================
   SERVICIOS
============================================================ */
.services-section {
    background-color: var(--color-bg);
}

.service-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.055);
    transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Borde izquierdo dorado en hover via inset box-shadow */
.service-card:hover {
    box-shadow: inset 3px 0 0 var(--color-gold), var(--shadow-sm);
    border-color: rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.018);
}

.service-icon {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    width: 54px;
    height: 54px;
    background: rgba(201,168,76,0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-sep {
    width: 36px;
    height: 2px;
    background: var(--color-teal);
    opacity: 0.35;
    margin-bottom: 1.25rem;
    border-radius: 1px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}
.service-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.service-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.03em;
    margin-top: auto;
}

.service-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}
.service-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.055);
    font-size: 0.84rem;
}
.service-items-list li:last-child { border-bottom: none; }
.service-items-list .svc-nombre { color: var(--color-gray); line-height: 1.3; }
.service-items-list .svc-precio {
    font-weight: 700;
    color: var(--color-black);
    white-space: nowrap;
    font-size: 0.85rem;
}

/* ---- Lista de servicios real (tabbed) ---- */
.servicios-tabs { gap: 0.5rem; flex-wrap: wrap; }
.servicios-tabs .nav-link {
    color: var(--color-gray);
    border-radius: 50px;
    padding: 0.5rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    transition: all var(--transition);
}
.servicios-tabs .nav-link:hover {
    color: var(--color-black);
    border-color: #ddd;
}
.servicios-tabs .nav-link.active {
    background: var(--color-black);
    color: #fff;
    border-color: var(--color-black);
}

.servicios-lista {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
}

.servicio-grupo-header {
    background: var(--color-bg);
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.servicio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 1rem;
    transition: background var(--transition);
}
.servicio-row:last-child { border-bottom: none; }
.servicio-row:hover { background: #fafaf8; }

.servicio-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.servicio-nombre {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.3;
}
.servicio-duracion {
    font-size: 0.75rem;
    color: #aaa;
}
.servicio-precio {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    white-space: nowrap;
}
.servicio-desde {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-gray);
    display: block;
    text-align: right;
}
.servicio-nota-text {
    font-size: 0.78rem;
    color: var(--color-gray);
    font-style: italic;
}

@media (max-width: 575.98px) {
    .servicio-row { padding: 0.7rem 1rem; }
    .servicio-nombre { font-size: 0.87rem; }
}


/* ============================================================
   PRODUCTOS
============================================================ */
.products-section {
    background-color: var(--color-teal-light);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 50px;
}

.product-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.4s ease;
}
img.product-img-placeholder {
    object-fit: contain;
    background: #fff;
    padding: 10px;
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); }

.product-img-1 { background: linear-gradient(135deg, #d0f4f6, #b3eef1); color: #00a0a8; }
.product-img-2 { background: linear-gradient(135deg, #cdf2f4, #aaeaed); color: #00a0a8; }
.product-img-3 { background: linear-gradient(135deg, #f5e8da, #eeddce); color: #c9a84c; }
.product-img-4 { background: linear-gradient(135deg, #e8e0d0, #ded5c0); color: #c9a84c; }
.product-img-5 { background: linear-gradient(135deg, #d8f5f6, #c0edef); color: #007f86; }
.product-img-6 { background: linear-gradient(135deg, #d4f1f3, #bbe8eb); color: #00a0a8; }

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.35rem;
}
.product-desc {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.btn-consultar {
    border: 1.5px solid var(--color-black);
    color: var(--color-black);
    background: transparent;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
}
.btn-consultar:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: var(--color-white);
}


/* ============================================================
   GALERÍA
============================================================ */
.gallery-section {
    background-color: var(--color-white);
}

/* Mobile: grid 2 columnas con aspect-ratio */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

/* Desktop: masonry — primera imagen ocupa 2 cols × 2 filas */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
        gap: 10px;
    }
    .gallery-item {
        aspect-ratio: unset;
    }
    .gallery-item--featured {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 1.75rem;
    color: var(--color-white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }


/* ============================================================
   SHOWCASE — Trabajos Realizados & Eventos
============================================================ */
.showcase-section {
    background-color: var(--color-white);
}
.showcase-section--alt {
    background-color: var(--color-bg);
}
.showcase-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    border: 1.5px dashed rgba(0, 191, 200, 0.35);
    background: linear-gradient(160deg, var(--color-teal-light) 0%, var(--color-white) 100%);
    color: var(--color-teal);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 191, 200, 0.15);
}
.showcase-tile i {
    font-size: 2.4rem;
}
.showcase-tile span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.02em;
}
.showcase-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}
.showcase-note a {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
}
.showcase-note a:hover { text-decoration: underline; }

@media (min-width: 992px) {
    .col-lg-2half {
        flex: 0 0 auto;
        width: 20%;
    }
}

.evento-media-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.evento-img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}
.evento-video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    background: #000;
}

/* ============================================================
   NOSOTROS
============================================================ */
.about-section {
    background-color: var(--color-bg);
}

.about-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.about-stat-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--color-gray);
}
.about-stat-icon {
    font-size: 1rem;
    line-height: 1;
    color: var(--color-teal);
    flex-shrink: 0;
}

.about-image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}


/* ============================================================
   FOOTER
============================================================ */
.footer-main {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4.5rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.45rem;
}
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-social { display: flex; gap: 0.65rem; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
}
.social-link:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-white); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.footer-contact i {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Divisor sutil */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(0,191,200,0.14);
    margin: 3rem 0 1.75rem;
}

.footer-bottom { text-align: center; }
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.32);
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-white); }


/* ============================================================
   WHATSAPP FLOTANTE
============================================================ */
.instagram-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}
.instagram-float:hover {
    transform: scale(1.12);
    color: var(--color-white);
    box-shadow: 0 8px 28px rgba(188,24,136,0.5);
}
.instagram-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.instagram-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-black);
}
.instagram-float:hover .instagram-tooltip { opacity: 1; }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 3s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--color-white);
    animation: none;
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-black);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waPulse {
    0%   { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0.45); }
    70%  { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0); }
}


/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767.98px) {
    section { padding: 4rem 0; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .booking-info { gap: 0.5rem; }
    .booking-info-sep { display: none; }

    .about-stats { gap: 0.65rem 1.25rem; }

    .instagram-float {
        bottom: 82px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 10vw, 2.6rem); }
    .about-initials { font-size: 5rem; }
    .section-title { font-size: 1.6rem; }
    section { padding: 3rem 0; }
    .team-card { padding: 1.5rem 1.25rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .product-info { padding: 1.2rem; }
    .footer-brand { font-size: 1.35rem; }
}

@media (max-width: 375px) {
    .hero-title { font-size: 1.85rem; }
    .btn-hero-primary,
    .btn-hero-secondary { max-width: 100%; width: 100%; font-size: 0.9rem; padding: 0.8rem 1.5rem; }
    .gallery-grid { gap: 5px; }
}

/* ============================================================
   RESPONSIVE — TABLET (768px - 992px)
============================================================ */
@media (min-width: 576px) and (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item--featured {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
    .gallery-item { aspect-ratio: unset; }
}

/* Profesionales mobile: 1 columna centrada */
@media (max-width: 575.98px) {
    .col-10.reveal { width: 100%; }
    .team-card { margin: 0 auto; max-width: 340px; }
    .about-stats { flex-direction: column; gap: 0.65rem; }
    .booking-info { flex-direction: column; gap: 0.35rem; }
    .booking-info-sep { display: none; }
    /* Galería: featured a todo el ancho → las 8 restantes llenan 2 columnas sin hueco */
    .gallery-item--featured { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
}

/* ============================================================
   PRODUCTOS — precio, botón catálogo, página catálogo y detalle
============================================================ */
.product-price {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.btn-ver-catalogo {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--color-black);
    color: var(--color-black);
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}
.btn-ver-catalogo:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* ---- Filtros marca (tarjetas logo) ---- */
.marca-filter-wrap { flex-wrap: wrap; }
.marca-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.marca-card:hover {
    border-color: var(--color-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.marca-card--active {
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}
.marca-card__logo {
    width: 85%;
    max-height: 70px;
    object-fit: contain;
}
@media (max-width: 575.98px) {
    .marca-card { width: 140px; height: 80px; }
}

/* ---- Página catálogo ---- */
.catalogo-section,
.producto-detail-section {
    padding-top: 130px;
    padding-bottom: 5rem;
    background-color: var(--color-bg);
    min-height: 80vh;
}
.catalogo-search { max-width: 560px; margin-left: auto; margin-right: auto; }
.catalogo-search .form-control {
    border: 1.5px solid #e2e2dd;
    border-right: none;
    padding: 0.7rem 1.1rem;
}
.catalogo-search .form-control:focus {
    box-shadow: none;
    border-color: var(--color-teal);
}
.btn-search {
    background: var(--color-teal);
    color: var(--color-white);
    border: 1.5px solid var(--color-teal);
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}
.btn-search:hover { background: #00a0a8; color: var(--color-white); }
.catalogo-result-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 0.75rem;
}
.catalogo-result-info a { color: var(--color-teal); }

.catalogo-pagination .page-link {
    color: var(--color-black);
    border: 1px solid #e2e2dd;
    margin: 0 3px;
    border-radius: 8px;
}
.catalogo-pagination .page-item.active .page-link {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: var(--color-white);
}

/* ---- Página detalle producto ---- */
.producto-breadcrumb {
    font-size: 0.82rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}
.producto-breadcrumb a { color: var(--color-teal); text-decoration: none; }
.producto-breadcrumb span { margin: 0 0.4rem; }
.producto-breadcrumb .current { color: var(--color-black); }

.producto-gallery-main {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}
.producto-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.producto-gallery-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}
.producto-thumb {
    width: 70px; height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--color-white);
    padding: 0;
    cursor: pointer;
}
.producto-thumb img { width: 100%; height: 100%; object-fit: cover; }
.producto-thumb.active { border-color: var(--color-teal); }

.producto-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}
.producto-precio {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1.25rem;
}
.producto-desc-corta {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.producto-nota {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 2rem;
}
.producto-descripcion-full {
    border-top: 1px solid #eee;
    padding-top: 1.75rem;
}
.producto-descripcion-full h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}
.producto-descripcion-full p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}
.producto-relacionados { border-top: 1px solid #eee; }

@media (max-width: 575.98px) {
    .catalogo-section, .producto-detail-section { padding-top: 105px; }
    .producto-title { font-size: 1.6rem; }
}

/* ============================================================
   LIGHTBOX GALERÍA
============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 84vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
    animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}
.lightbox-close:hover { opacity: 1; color: var(--color-teal); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--color-teal); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
@media (max-width: 575.98px) {
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.7rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { font-size: 2.1rem; top: 12px; right: 14px; }
    .lightbox-img { max-width: 94vw; }
}
