/*
Theme Name: Fruta Madre
Theme URI: https://frutamadre.ec
Author: Fruta Madre
Author URI: https://frutamadre.ec
Description: Tema WordPress personalizado para la heladería artesanal Fruta Madre, ubicada en Tulcán, Ecuador. Helados artesanales, ensaladas de fruta premium y postres únicos.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fruta-madre
Tags: food, restaurant, ice-cream, artisanal, tulcan, ecuador
*/

/* ===================================================
   DESIGN TOKENS
   =================================================== */
:root {
    /* Brand Colors - Paleta Oficial Fruta Madre */
    --brand-orange: #ff8c00;
    --brand-pink: #ef7990;
    --brand-brown: #5a4032;
    --brand-yellow: #f2e474;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff8c00, #ef7990);
    --gradient-warm: linear-gradient(135deg, #ffa500, #ff8c00);
    --gradient-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --glass-blur: blur(10px);

    /* Derived Colors */
    --brown-dark: #2d1b11;
    --brown-medium: #5a4032;
    --brown-light: #8b7565;
    --pink-magenta: #ef7990;
    --orange: #ff8c00;
    --yellow-lime: #f2e474;
    --lavender: #d5c1dc;
    --sky-blue: #66bce7;
    --cream: #fff5e6;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 51, 25, 0.05);
    --shadow-md: 0 10px 30px rgba(74, 51, 25, 0.1);
    --shadow-lg: 0 20px 50px rgba(74, 51, 25, 0.15);
    --shadow-glow: 0 0 20px rgba(239, 121, 144, 0.4);

    /* Typography */
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing & Borders */
    --container-width: 1200px;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-full: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    /* Wood texture background */
    background-color: var(--wood-base);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 28px,
            rgba(74, 51, 25, 0.06) 28px,
            rgba(74, 51, 25, 0.06) 30px
        ),
        repeating-linear-gradient(
            87deg,
            transparent,
            transparent 45px,
            rgba(74, 51, 25, 0.04) 45px,
            rgba(74, 51, 25, 0.04) 46px
        ),
        repeating-linear-gradient(
            92deg,
            transparent,
            transparent 60px,
            rgba(160, 120, 80, 0.05) 60px,
            rgba(160, 120, 80, 0.05) 62px
        ),
        linear-gradient(
            180deg,
            rgba(200, 164, 122, 0.3) 0%,
            transparent 2px,
            transparent 6px,
            rgba(200, 164, 122, 0.2) 6px,
            transparent 8px
        );
    background-size: 30px 100%, 46px 100%, 62px 100%, 100% 10px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 5px 0;
}

.header-top-bar {
    background: #ef7990;
    padding: 8px 0;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

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

.top-bar-msg {
    letter-spacing: 0.3px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--brown-dark);
}

.header-social a svg,
.header-social a i {
    width: 18px;
    height: 18px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brown-dark);
}

.logo-text .highlight {
    color: var(--pink-magenta);
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown-dark);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--pink-magenta);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--pink-magenta);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--brown-dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================================
   HERO SECTION (Inicio)
   =================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px 100px;
    max-width: var(--container-width);
    margin: 0 auto;
    min-height: 85vh;
    gap: 60px;
}

.hero-content {
    max-width: 580px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pink-magenta), var(--orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow-pink);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: var(--shadow-glow-pink); }
    50% { box-shadow: 0 8px 40px rgba(239, 121, 144, 0.5); }
}

.hero-title {
    font-size: 3.8rem;
    color: var(--brown-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .accent-text {
    background: linear-gradient(135deg, var(--pink-magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--brown-dark);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(74, 51, 25, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(74, 51, 25, 0.35);
    background: var(--brown-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-magenta);
    border: 2.5px solid var(--pink-magenta);
}

.btn-secondary:hover {
    background: var(--pink-magenta);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-pink);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), #d4813a);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.btn-orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(228, 145, 71, 0.4);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 480px;
    height: 480px;
    flex-shrink: 0;
}

.hero-blob {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: linear-gradient(135deg, var(--lavender), var(--pink-light), var(--yellow-lime));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: blobMorph 12s infinite alternate ease-in-out;
    opacity: 0.7;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 64% 36% / 45% 55% 45% 55%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 42% 58% 50% 50% / 36% 64% 36% 64%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Floating fruit decorations */
.hero-float-fruit {
    position: absolute;
    font-size: 2.5rem;
    z-index: 2;
    animation: floatFruit 6s ease-in-out infinite;
}

.hero-float-fruit:nth-child(1) { top: -10px; right: -20px; animation-delay: 0s; }
.hero-float-fruit:nth-child(2) { bottom: 30px; left: -30px; animation-delay: -2s; }
.hero-float-fruit:nth-child(3) { top: 40%; right: -35px; animation-delay: -4s; }

@keyframes floatFruit {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ===================================================
   GANCHO TULCÁN - VALUE PROPOSITION
   =================================================== */
.gancho-section {
    background: var(--cream-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gancho-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-magenta), var(--orange), var(--yellow-lime), var(--sky-blue), var(--lavender));
}

.gancho-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gancho-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.gancho-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pink-magenta);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.gancho-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.gancho-card:hover::after {
    transform: scaleX(1);
}

.gancho-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.gancho-icon.pink { background: rgba(239, 121, 144, 0.12); color: var(--pink-magenta); }
.gancho-icon.orange { background: rgba(228, 145, 71, 0.12); color: var(--orange); }
.gancho-icon.blue { background: rgba(102, 188, 231, 0.12); color: var(--sky-blue); }

.gancho-card h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.gancho-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================================
   SECTION TITLES
   =================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-magenta), var(--orange));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================================
   MENU SECTION
   =================================================== */
.menu-section {
    padding: var(--section-padding);
    background: var(--cream-light);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(74, 51, 25, 0.1);
    background: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-medium);
    transition: all var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--pink-magenta);
    color: var(--pink-magenta);
}

.filter-btn.active {
    background: var(--brown-dark);
    color: var(--white);
    border-color: var(--brown-dark);
    box-shadow: 0 4px 15px rgba(74, 51, 25, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.item-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-item:hover .item-img-wrapper img {
    transform: scale(1.08);
}

.item-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(74, 51, 25, 0.85);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.item-info {
    padding: 25px;
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-magenta);
}

.item-price .consultar {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-item:nth-child(5) { animation-delay: 0.25s; }
.menu-item:nth-child(6) { animation-delay: 0.3s; }
.menu-item:nth-child(7) { animation-delay: 0.35s; }
.menu-item:nth-child(8) { animation-delay: 0.4s; }

/* ===================================================
   FAVORITOS SECTION
   =================================================== */
.favoritos-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.favoritos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.favorito-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

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

.favorito-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--yellow-lime), var(--orange));
    color: var(--brown-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.favorito-img {
    height: 280px;
    overflow: hidden;
}

.favorito-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.favorito-card:hover .favorito-img img {
    transform: scale(1.06);
}

.favorito-info {
    padding: 30px;
}

.favorito-info h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.favorito-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.favorito-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink-magenta);
}

.favorito-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    color: var(--yellow-lime);
    font-size: 1.1rem;
}

/* ===================================================
   ENCUENTRANOS SECTION
   =================================================== */
.encuentranos-section {
    padding: var(--section-padding);
    background: var(--cream-light);
}

.encuentranos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card-icon.location { background: rgba(239, 121, 144, 0.12); color: var(--pink-magenta); }
.info-card-icon.clock { background: rgba(228, 145, 71, 0.12); color: var(--orange); }
.info-card-icon.phone { background: rgba(102, 188, 231, 0.12); color: var(--sky-blue); }

.info-card h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-card .horario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(74, 51, 25, 0.1);
}

.horario-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.horario-item .time {
    color: var(--pink-magenta);
    font-weight: 600;
}

.wa-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--brown-dark);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(74, 51, 25, 0.25);
    transition: all var(--transition-base);
}

.wa-big-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(74, 51, 25, 0.35);
}

.wa-big-btn svg {
    width: 24px;
    height: 24px;
}

/* ===================================================
   FOOTER
   =================================================== */
/* ===================================================
   FOOTER - PREMIUM REDESIGN
   =================================================== */
#footer {
    background: var(--brown-dark);
    color: var(--white);
    position: relative;
}

.footer-subscribe {
    background: var(--gradient-primary);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.subscribe-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-subscribe h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-subscribe p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.subscribe-form .input-group {
    display: flex;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    border-radius: var(--radius-full);
}

.subscribe-form button {
    background: var(--brown-dark);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
}

.subscribe-form button:hover {
    background: var(--brand-pink);
    transform: translateX(5px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px 20px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 25px;
}

.brand-social {
    display: flex;
    gap: 15px;
}

.brand-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.brand-social a:hover {
    background: var(--brand-pink);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-nav h4, .footer-contact h4 {
    color: var(--brand-yellow);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav a {
    opacity: 0.7;
    transition: all var(--transition-base);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--brand-pink);
    padding-left: 8px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    opacity: 0.8;
    align-items: center;
}

.contact-list i {
    color: var(--brand-pink);
    width: 20px;
}

.footer-bottom {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===================================================
   WHATSAPP STICKY - PREMIUM
   =================================================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #25d366;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    overflow: hidden;
}

.whatsapp-sticky .wa-tooltip {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.wa-icon-container {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
}

.wa-icon-container svg {
    width: 28px;
    height: 28px;
}

.whatsapp-sticky:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        padding: 8px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-sticky .wa-tooltip {
        display: none;
    }
}

/* ===================================================
   AMBIENTE ACOGEDOR SECTION
   =================================================== */
.ambiente-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(74, 51, 25, 0.05);
}

.ambiente-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ambiente-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ambiente-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ambiente-img-wrapper:hover .ambiente-img {
    transform: scale(1.05);
}

.ambiente-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.ambiente-badge {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--brown-dark);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.ambiente-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 20px 0 30px;
    line-height: 1.8;
}

.ambiente-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(239, 121, 144, 0.1);
    color: var(--pink-magenta);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--brown-dark);
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.btn-ambiente {
    display: inline-block;
    background: var(--pink-magenta);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-ambiente:hover {
    background: var(--brown-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================================
   TIKTOK SECTION
   =================================================== */
.tiktok-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.tiktok-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 80, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 242, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tiktok-embed-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tiktok-frame {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tiktok-info h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.tiktok-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tiktok-logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 0, 80, 0.3);
    transition: all var(--transition-base);
}

.btn-tiktok:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 0, 80, 0.4);
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px 80px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-container {
        width: 380px;
        height: 380px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right var(--transition-base);
        z-index: 1001;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-container {
        width: 300px;
        height: 300px;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-form input[type="email"] {
        border-radius: var(--radius-full);
    }

    .subscribe-form button {
        border-radius: var(--radius-full);
    }

    .whatsapp-float .wa-text {
        display: none;
    }

    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .header-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image-container {
        width: 260px;
        height: 260px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
