/* ==========================================================================
   DISEÑO VISUAL Y SISTEMA DE ESTILOS - BARBIEES'S NAILS & SPA
   ========================================================================== */

/* Variables del Sistema de Diseño - Enfocado en una Estética Más Rosa */
:root {
    /* Paleta de Colores Rosa Beauty Premium */
    --color-primary: #fff0f3;        /* Rosa pastel suave para fondo general */
    --color-primary-dark: #fcd5ce;   /* Rosa suave de contraste */
    --color-pink: #e62b66;           /* Rosa/Magenta vivo para acentos */
    --color-pink-hover: #c91e52;     /* Rosa oscuro para hovers */
    --color-gold: #c5a880;           /* Dorado suave apagado */
    --color-gold-hover: #b4966e;     /* Dorado oscuro para hovers */
    --color-white: #ffffff;
    --color-card-bg: #ffffff;
    --color-gray-light: #fff5f6;     /* Gris claro teñido de rosa */
    --color-gray-medium: #8e8e8e;    /* Gris para bordes y textos sutiles */
    --color-text: #3a1f26;           /* Café oscuro/Negro rosado para legibilidad */
    --color-text-muted: #6e5057;     /* Texto de lectura */
    --color-whatsapp: #25d366;       /* Color oficial WhatsApp */
    --color-whatsapp-dark: #128c7e;

    /* Colores del Selector de Catálogos */
    --color-selection-pink: #ff4b82;
    --color-selection-purple: #a855f7;
    --color-selection-orange: #f97316;
    --color-selection-green: #22c55e;

    /* Estructuras de Contenedores */
    --color-header-bg: rgba(255, 255, 255, 0.95);
    --color-footer-bg: #3a1f26;

    /* Tipografía */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', Helvetica, Arial, sans-serif;

    /* Sombras (Shadows) */
    --shadow-sm: 0 4px 12px rgba(230, 43, 102, 0.05);
    --shadow-md: 0 8px 24px rgba(230, 43, 102, 0.08);
    --shadow-lg: 0 16px 36px rgba(230, 43, 102, 0.12);

    /* Bordes y Transiciones */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Modo Oscuro Premium (Estilo Velvet Negro Rosado) */
[data-theme="dark"] {
    --color-primary: #12080a;        /* Velvet negro rosado profundo */
    --color-primary-dark: #221014;   /* Rosa oscuro de contraste */
    --color-card-bg: #1b0c0f;        /* Fondo de tarjetas/bloques oscuro */
    --color-gray-light: #251216;     /* Gris oscuro rosado */
    --color-gray-medium: #b09ba0;    /* Gris para bordes en modo oscuro */
    --color-text: #ffeef2;           /* Texto claro / Blanco rosa */
    --color-text-muted: #d9bdc3;     /* Texto de lectura claro */
    --color-header-bg: rgba(27, 12, 15, 0.95);
    --color-footer-bg: #0c0406;      /* Footer aún más oscuro */
}

/* 1. RESET Y ESTILOS GLOBALES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Utilidades Comunes */
.d-none {
    display: none !important;
}

.replacement-note {
    display: block;
    font-size: 0.8rem;
    color: #c95d5d;
    font-style: italic;
    margin-top: 4px;
}

.page-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

/* 2. HEADER RESPONSIVO Y MENU MÓVIL */
.main-header {
    background-color: var(--color-header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 43, 102, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
    background-color: rgba(230, 43, 102, 0.08);
    color: var(--color-pink);
    transform: scale(1.1);
}

.logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-pink);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--color-pink-hover);
}

.logo-accent {
    color: var(--color-pink);
    font-style: italic;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    display: block;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-card-bg);
    border-bottom: 1px solid rgba(230, 43, 102, 0.15);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 0;
}

.nav-menu.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-pink);
    background-color: rgba(230, 43, 102, 0.08);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3. BOTONES ELEGANTES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(230, 43, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-pink-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-card-bg);
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary-sm {
    background-color: var(--color-card-bg);
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.btn-secondary-sm:hover {
    background-color: var(--color-primary);
    color: var(--color-pink-hover);
}

.btn-whatsapp-lg {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-lg:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 4. BOTÓN FLOTANTE WHATSAPP */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-floating .tooltip-text {
    visibility: hidden;
    width: 170px;
    background-color: var(--color-text);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    position: absolute;
    right: 75px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: normal;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-floating .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-text);
}

.whatsapp-floating:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 5. HERO SECTION ELEGANTE */
.hero-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(230, 43, 102, 0.2), var(--color-primary), var(--color-primary-dark));
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg::after {
    content: "";
    position: absolute;
    width: 280px; /* ajusta el tamaño */
    height: 280px;
    background-image: url("img/imgb2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotateNail 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotateNail {
    from { transform: rotate(-10deg) scale(0.95); }
    to { transform: rotate(10deg) scale(1.05); }
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(230, 43, 102, 0.15);
}

.hero-badge .number {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pink);
}

.hero-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 6. BENEFICIOS Y DESTACADOS */
.section-title-alt {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.benefits-container {
    padding: 3rem 0;
    border-top: 1px solid rgba(230, 43, 102, 0.15);
    border-bottom: 1px solid rgba(230, 43, 102, 0.15);
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.benefit-card {
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-pink);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.featured-preview {
    background: linear-gradient(to right, rgba(230, 43, 102, 0.15), rgba(230, 43, 102, 0.05));
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.preview-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.preview-header h2 {
    font-size: 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.preview-card {
    background-color: var(--color-card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-icon {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.preview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-pink);
}

.preview-card:hover .preview-link {
    color: var(--color-pink-hover);
}

/* 7. CARDS DE SERVICIOS */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-intro .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-pink);
    display: block;
    margin-bottom: 0.5rem;
}

.section-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pink);
}

.service-img-wrapper {
    height: 200px;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-bg {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(230, 43, 102, 0.1);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.service-duration, .service-price {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-gray-medium);
    font-weight: 700;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.btn-whatsapp-sm {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    width: 100%;
    padding: 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp-sm:hover {
    background-color: var(--color-whatsapp-dark);
}

/* ==========================================================================
   8. SECCIÓN DE CATÁLOGOS DIGITALES
   ========================================================================== */
.catalog-selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.selection-card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 43, 102, 0.2);
}

.selection-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.selection-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
    background-color: var(--color-primary);
}

.selection-circle::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px dashed transparent;
}

.border-pink::before { border-color: var(--color-selection-pink); }
.border-purple::before { border-color: var(--color-selection-purple); }
.border-orange::before { border-color: var(--color-selection-orange); }
.border-green::before { border-color: var(--color-selection-green); }

.circle-icon {
    font-size: 3.5rem;
}

.border-pink .circle-icon { color: var(--color-selection-pink); }
.border-purple .circle-icon { color: var(--color-selection-purple); }
.border-orange .circle-icon { color: var(--color-selection-orange); }
.border-green .circle-icon { color: var(--color-selection-green); }

.circle-badge {
    position: absolute;
    bottom: -5px;
    background-color: var(--color-card-bg);
    border: 1px solid transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.border-purple .circle-badge {
    border-color: var(--color-selection-purple);
    color: var(--color-selection-purple);
}

.border-orange .circle-badge {
    border-color: var(--color-selection-orange);
    color: var(--color-selection-orange);
}

.btn-selection {
    background-color: var(--color-card-bg);
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
    width: 100%;
    max-width: 180px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.btn-selection:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(230, 43, 102, 0.2);
}

.btn-excel-download {
    color: var(--color-selection-green);
    border-color: var(--color-selection-green);
}

.btn-excel-download:hover {
    background-color: var(--color-selection-green);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

/* ==========================================================================
   9. VISTA INTERNA DEL CATÁLOGO
   ========================================================================== */
.catalog-internal-view {
    animation: fadeIn 0.4s ease-out;
}

.internal-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.internal-header h3 {
    font-size: 2rem;
    margin-bottom: 0;
}

.landing-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-landing-pink {
    background-color: var(--color-pink);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-landing-pink:hover {
    background-color: var(--color-pink-hover);
    transform: translateY(-2px);
}

.btn-landing-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-landing-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.campaign-collage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.collage-item {
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(230, 43, 102, 0.1);
}

.collage-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--color-white);
}

.collage-badge {
    align-self: flex-start;
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.collage-overlay h4 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.collage-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.collage-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-pink);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.collage-btn:hover {
    background-color: var(--color-white);
    color: var(--color-pink-hover);
    transform: translateY(-2px);
}

.catalog-products-section {
    border-top: 1px solid rgba(230, 43, 102, 0.15);
    padding-top: 3rem;
}

.products-section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.catalog-toolbar-mini {
    margin-bottom: 2rem;
    max-width: 400px;
}

/* 10. GRID DE PRODUCTOS */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pink);
}

.product-img-wrapper {
    height: 220px;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon-bg {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    z-index: 1;
}

.badge-new { background-color: var(--color-gold); }
.badge-offer { background-color: #e27c7c; }
.badge-popular { background-color: var(--color-pink); }

.product-code {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 0.25rem;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-pricing {
    border-top: 1px solid rgba(230, 43, 102, 0.1);
    padding-top: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-detal, .price-mayor {
    display: flex;
    flex-direction: column;
}

.price-detal .val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-mayor .val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-pink);
}

/* 11. PÁGINA EN PROCESO */
.process-page-view {
    animation: fadeIn 0.4s ease-out;
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 4rem 2rem;
    border: 1px solid rgba(230, 43, 102, 0.15);
    text-align: center;
}

.process-container {
    max-width: 600px;
    margin: 0 auto;
}

.process-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 43, 102, 0.1);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.process-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-container p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.process-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   12. NUEVA GALERÍA ASIMÉTRICA Y COLLAGE DE INSTAGRAM
   ========================================================================== */
.gallery-hero-banner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 240, 243, 0.85)), url('https://images.unsplash.com/photo-1519014816548-bf5fe059798b?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border: 1px solid rgba(230, 43, 102, 0.1);
}

.gallery-banner-content h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    font-weight: 700;
}

.gallery-banner-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.gallery-asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-card-item {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(230, 43, 102, 0.08);
}

.gallery-card-item.tall {
    height: 380px;
}

.gallery-card-item.small {
    height: 180px;
}

.gallery-card-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 43, 102, 0.15);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-card-item:hover .card-item-overlay {
    opacity: 1;
    background-color: rgba(230, 43, 102, 0.4);
}

.card-item-overlay span {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-card-item:hover .card-item-overlay span {
    transform: translateY(0);
}

.gallery-action-box {
    text-align: center;
    margin-bottom: 5rem;
}

.instagram-collage-section {
    border-top: 1px solid rgba(230, 43, 102, 0.15);
    padding-top: 4rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.insta-img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.insta-follow-card {
    aspect-ratio: 1 / 1;
    background-color: var(--color-card-bg);
    border: 2px solid var(--color-pink);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-pink);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.insta-follow-card i {
    font-size: 2.2rem;
}

.insta-follow-card span {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.insta-follow-card:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   13. ESTILOS SECCIÓN PROMOCIONES (CARRUSELES E INSTAGRAM POSTS)
   ========================================================================== */
/* ==========================================================================
   13. ESTILOS SECCIÓN PROMOCIONES (CARRUSELES E INSTAGRAM POSTS)
   ========================================================================== */
.banner-promociones {
    background-image: linear-gradient(rgba(230, 43, 102, 0.15), rgba(230, 43, 102, 0.45)), url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1200&auto=format&fit=crop');
}

.promo-section-group {
    margin-bottom: 5rem;
}

.promo-group-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-pink);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 0.5rem;
}

.promo-group-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-pink);
    border-radius: 2px;
}

/* Historias / Story Bubbles (Auto-Scroll Horizontal Continuo Estilo Instagram) */
.stories-marquee-wrapper {
    overflow: hidden;
    padding: 1.5rem 0.5rem;
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.08);
    position: relative;
}

.stories-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.stories-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.story-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 90px;
    flex-shrink: 0;
}

.story-bubble:hover {
    transform: scale(1.08);
}

.bubble-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f97316, #e62b66, #a855f7);
    padding: 3px;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.story-bubble:hover .bubble-ring {
    box-shadow: 0 0 15px rgba(230, 43, 102, 0.6);
}

.bubble-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--color-white);
}

.story-bubble span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Carrusel de Posts (Estilo Feed Instagram) */
.promo-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.promo-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    width: 100%;
}

.promo-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-card-bg);
    color: var(--color-pink);
    border: 1px solid rgba(230, 43, 102, 0.2);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev { left: -15px; }
.carousel-nav-btn.next { right: -15px; }

/* Tarjetas de Posts de Instagram */
.insta-post-card {
    min-width: 290px;
    max-width: 320px;
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(230, 43, 102, 0.12);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.insta-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pink);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(230, 43, 102, 0.08);
}

.post-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-pink);
    color: var(--color-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--color-primary-dark);
    object-fit: cover;
}

.post-meta {
    display: flex;
    flex-direction: column;
}

.post-meta strong {
    font-size: 0.85rem;
    color: var(--color-text);
}

.post-meta span {
    font-size: 0.7rem;
    color: var(--color-gray-medium);
}

.post-image-holder {
    aspect-ratio: 1 / 1;
    background-color: #ffeef2;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.post-placeholder-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 238, 242, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: var(--color-pink);
    gap: 10px;
    transition: var(--transition-fast);
}

.insta-post-card:hover .post-placeholder-overlay {
    background: linear-gradient(135deg, rgba(255, 238, 242, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.post-placeholder-overlay i {
    font-size: 2.5rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.insta-post-card:hover .post-placeholder-overlay i {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
}

.post-placeholder-overlay span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Corazón emergente (Double Click) */
.heart-pop-animation {
    position: absolute;
    font-size: 4.5rem;
    color: var(--color-white);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 4px 15px rgba(230, 43, 102, 0.4);
    animation: heartPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartPop {
    0% { transform: scale(0); opacity: 0; }
    30% { transform: scale(1.2); opacity: 0.9; }
    50% { transform: scale(1); opacity: 0.9; }
    80% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.4); opacity: 0; }
}

.post-actions-bar {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    color: var(--color-text);
}

.post-actions-bar div {
    display: flex;
    gap: 15px;
}

.post-actions-bar i {
    cursor: pointer;
    transition: var(--transition-fast);
}

.post-actions-bar i:hover {
    color: var(--color-pink);
    transform: scale(1.15);
}

.post-actions-bar i.fa-solid.fa-heart {
    color: var(--color-pink);
    animation: heartBeat 0.3s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.post-caption {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    flex-grow: 1;
}

.post-caption p {
    margin-bottom: 0;
}

.btn-whatsapp-post {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 0;
    font-size: 0.8rem;
    padding: 0.8rem;
    width: 100%;
    text-align: center;
}

.btn-whatsapp-post:hover {
    background-color: var(--color-whatsapp-dark);
}

/* Panel de edición flotante para el prototipo */
.post-edit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid rgba(230,43,102,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-pink);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition-fast);
}

.post-edit-btn:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Modal del Editor de Promociones */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 31, 38, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.promo-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-modal-content {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(230, 43, 102, 0.25);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.promo-modal.active .promo-modal-content {
    transform: translateY(0);
}

.promo-modal-header {
    background-color: var(--color-primary-dark);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(230, 43, 102, 0.1);
}

.promo-modal-header h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
    color: var(--color-text);
}

.promo-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.promo-modal-close:hover {
    color: var(--color-pink);
}

.promo-modal-body {
    padding: 1.5rem;
}

.promo-modal-body .form-group {
    margin-bottom: 1.25rem;
}

.promo-modal-footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(230, 43, 102, 0.08);
    background-color: var(--color-gray-light);
}

/* File input custom styles */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    border: 2px dashed rgba(230,43,102,0.3);
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--color-pink);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.file-upload-btn-custom:hover {
    background-color: rgba(230,43,102,0.05);
    border-color: var(--color-pink);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}


/* ==========================================================================
   14. CONTACTO Y UBICACIÓN
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    background-color: rgba(230, 43, 102, 0.1);
    color: var(--color-pink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--color-pink);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-card-bg);
    border: 1px solid rgba(230, 43, 102, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

.social-links a:hover {
    background-color: rgba(230, 43, 102, 0.05);
    border-color: var(--color-pink);
}

/* Formulario */
.contact-form-container {
    background-color: var(--color-card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.1);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-form-container p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(230, 43, 102, 0.2);
    background-color: var(--color-card-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 6px rgba(230, 43, 102, 0.2);
}

/* Mapa */
.map-container {
    background-color: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 43, 102, 0.1);
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-iframe-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* 15. FOOTER COMPLETO */
.main-footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 1.5rem 1rem 1.5rem;
    border-top: 4px solid var(--color-pink);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.logo-footer {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-pink);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-col p i {
    margin-right: 8px;
    color: var(--color-pink);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DE TABLET Y ESCRITORIO)
   ========================================================================== */

/* PANTALLAS MEDIANAS (TABLETS: >= 768px) */
@media (min-width: 768px) {
    .page-section {
        padding: 6rem 2rem;
    }

    /* Hero */
    .hero-section {
        flex-direction: row;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image-wrapper {
        flex: 1;
        height: 450px;
    }

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

    /* Beneficios */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Catálogo Selección */
    .catalog-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Collage */
    .campaign-collage {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Productos */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Grilla Asimétrica de Galería */
    .gallery-asymmetric-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-card-item.tall {
        height: 380px;
    }
    
    .gallery-card-item.small {
        height: 180px;
    }

    /* Instagram Feed Collage */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Carruseles de Posts (2 items visibles en tablets) */
    .insta-post-card {
        min-width: 48%;
    }

    /* Contacto */
    .contact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PANTALLAS GRANDES (ESCRITORIO: >= 1024px) */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: block;
        position: static;
        width: auto;
        background-color: transparent;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        margin-left: auto;
        margin-right: 25px;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-section {
        gap: 5rem;
    }

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

    /* Beneficios */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Resumen Destacados */
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Catálogo Selección */
    .catalog-selection-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    /* Collage */
    .campaign-collage {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .campaign-collage .collage-item.large {
        grid-column: span 2;
    }

    /* Productos */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Instagram Feed Collage a 5 columnas */
    .instagram-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Carruseles de Posts (3 items visibles en desktop) */
    .insta-post-card {
        min-width: 31%;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 2fr 1fr 1.5fr 1fr;
        gap: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ocultar elementos de edición para que el contenido sea estático/configurado desde el código */
.post-edit-btn,
#promoEditorModal {
    display: none !important;
}

/* ==========================================================================
   MEJORAS DE CONTRASTE EN MODO OSCURO (FOOTER Y BANNERS)
   ========================================================================== */
[data-theme="dark"] .gallery-hero-banner {
    background-image: linear-gradient(rgba(18, 8, 10, 0.85), rgba(34, 16, 20, 0.9)), url('https://images.unsplash.com/photo-1519014816548-bf5fe059798b?q=80&w=1200&auto=format&fit=crop') !important;
    border-color: rgba(230, 43, 102, 0.3);
}

[data-theme="dark"] .banner-promociones {
    background-image: linear-gradient(rgba(22, 10, 13, 0.8), rgba(230, 43, 102, 0.45)), url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1200&auto=format&fit=crop') !important;
}

[data-theme="dark"] .logo-footer {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-col h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-social a {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .footer-social a:hover {
    background-color: var(--color-pink) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .footer-col ul a {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .footer-col ul a:hover {
    color: var(--color-pink);
}

[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-col p {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
}

/*======Adicionales ======== */

.course-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-body) ;
}

.intro {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  font-family: var(--font-body);
}

.course-grid h3 {
  margin-bottom: 10px;
}

.course-grid ul {
  padding-left: 25px;
}

.course-grid li {
  margin-bottom: 8px;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schedule {
  margin-top: 30px;
}

.footer-text {
  margin-top: 30px;
  font-size: 1.4rem;
  
}

@media (max-width: 768px) {

  .course-container {
    padding: 0 20px;
  }

  .course-container > p:first-child {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .course-grid ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .course-grid h3 {
    margin-bottom: 15px;
  }

  .right-column {
    margin-top: 10px;
    gap: 10px;
  }

  .schedule {
    margin-top: 10px;
  }

  .course-container p {
    text-align: center;
  }
}

.course-container{
    max-width:900px;
    margin:0 auto;
}

.intro{
    text-align:center;
    font-size:1.2rem;
    margin-bottom:40px;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-bottom:35px;
}

.course-card{
    background:var(--color-card-bg);
    padding:25px;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-sm);
    border:1px solid rgba(230,43,102,.12);
}

.course-card h3{
    margin-bottom:15px;
    color:var(--color-pink);
}

.course-card ul{
    padding-left:20px;
}

.course-card li{
    margin-bottom:10px;
}

.course-highlight{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:20px;
    margin-bottom:15px;
    background:rgba(230,43,102,.05);
    border-radius:var(--radius-md);
}

.course-highlight i{
    color:var(--color-pink);
    font-size:1.5rem;
    margin-top:3px;
}

.course-highlight p{
    margin:0;
}

@media(max-width:768px){

    .intro{
        font-size:1rem;
    }

    .course-highlight{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
}
.map-iframe-wrapper iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

