/* ==========================================================================
   SABORES DE MI TIERRA - ULTRA-PREMIUM LUXURY STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette - Royal Charcoal Obsidian & Pure Metallic Gold */
    --bg-darker: #070605;
    --bg-dark: #0f0d0b;
    --bg-card: #16120f;
    --bg-card-hover: #1f1914;
    
    /* Metallic Gold & Warm Amber Tokens */
    --gold: #f3d078;
    --gold-subtle: #d4af37;
    --gold-light: #fff8e3;
    --amber: #d97706;
    --amber-hover: #b45309;
    --gold-glow: rgba(243, 208, 120, 0.28);
    
    /* WhatsApp Green Tokens */
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1da851;
    --whatsapp-glow: rgba(37, 211, 102, 0.45);

    /* Text Colors */
    --text-main: #f8f5ee;
    --text-muted: #c4beaf;
    --text-subtle: #948e80;
    
    /* Borders & Glassmorphism */
    --border-color: rgba(243, 208, 120, 0.22);
    --border-hover: rgba(243, 208, 120, 0.55);
    
    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Animation & Curves */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 26px;
    
    /* Shadows */
    --shadow-card: 0 16px 45px rgba(0, 0, 0, 0.7);
    --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(243, 208, 120, 0.18);
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Layout Containers & Scales */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.max-width-md {
    max-width: 880px;
    margin: 0 auto;
}

.section-padding {
    padding: 115px 0;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.grid {
    display: grid;
    gap: 44px;
}

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

.align-center {
    align-items: center;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.margin-top-md {
    margin-top: 18px;
}

.margin-top-lg {
    margin-top: 44px;
}

/* Typography & Gold Gradients */
.gold-gradient-text {
    background: linear-gradient(135deg, #fff3d1 0%, #f3d078 50%, #b88e28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-star {
    color: var(--gold);
    font-size: 0.75rem;
}

.gold-icon {
    color: var(--gold);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 60px auto;
    line-height: 1.65;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px auto;
}

.section-divider-left {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 0 24px 0;
}

.category-header {
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.category-badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-title i {
    color: var(--gold);
}

/* Buttons & CTAs */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 34px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn:hover::before {
    animation: btnShimmer 0.75s ease-in-out;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2bf075 0%, #20be5c 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 38px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

.btn-gold {
    background: linear-gradient(135deg, #f3d078 0%, #b88e28 100%);
    color: #070605;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(243, 208, 120, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fff3d1 0%, #f3d078 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 38px rgba(243, 208, 120, 0.6);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.08rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

/* Top Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d97706, #f3d078, #25d366);
    z-index: 2001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 14px rgba(243, 208, 120, 0.9);
}

/* Floating WhatsApp Round Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    font-size: 2.1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: waPulse 3s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.12);
    box-shadow: 0 14px 44px rgba(37, 211, 102, 0.8);
    color: #ffffff;
    background: linear-gradient(135deg, #2bf075 0%, #20be5c 100%);
}

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.85), 0 0 0 14px rgba(37, 211, 102, 0.15);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: rgba(7, 6, 5, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(7, 6, 5, 0.97);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(243, 208, 120, 0.38);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #b88e28 100%);
    color: #070605;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 22px rgba(243, 208, 120, 0.55);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 1px;
    color: var(--text-main);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(243, 208, 120, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    transition: var(--transition);
}

.nav-phone-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(243, 208, 120, 0.16);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    padding-top: 110px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 6, 5, 0.75) 0%, rgba(7, 6, 5, 0.88) 70%, rgba(7, 6, 5, 1) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.hero-content {
    max-width: 840px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(243, 208, 120, 0.12);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.95);
}

.hero-description {
    font-size: 1.28rem;
    color: #e5e1dc;
    margin-bottom: 46px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Features Bar */
.features-bar {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--border-color);
    background: rgba(243, 208, 120, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.3rem;
    color: var(--gold);
    width: 62px;
    height: 62px;
    background: rgba(243, 208, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* SECTION: TASTING MENU CARD */
.tasting-card {
    background: linear-gradient(145deg, #181411 0%, #100d0a 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.tasting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #070605;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tasting-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.tasting-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 700px;
}

.tasting-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.course-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.course-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.course-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.course-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.course-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SECTION: WINE & COCKTAILS */
.wine-section {
    background-color: var(--bg-dark);
}

.wine-grid {
    gap: 40px;
}

.wine-image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.wine-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.wine-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.wine-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.65;
}

.wine-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wine-list li {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* MENU SECTION - 2 COLUMNS PER CATEGORY */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.menu-card {
    background: linear-gradient(145deg, #181411 0%, #100d0a 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.menu-card-img-wrap {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(7, 6, 5, 0.88);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 12px;
}

.menu-card-desc {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.68;
}

/* GOOGLE MAPS SECTION */
.map-section {
    background-color: var(--bg-dark);
}

.map-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    height: 100%;
    min-height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    filter: contrast(1.05) saturate(1.1);
}

.location-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
}

.location-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.location-icon {
    font-size: 2.2rem;
    color: var(--gold);
    background: rgba(243, 208, 120, 0.15);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.location-header p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
    font-size: 0.95rem;
    color: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

/* Delivery Section */
.delivery-image-wrapper {
    position: relative;
}

.delivery-img, .about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.image-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.delivery-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.delivery-checklist, .about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 26px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.04rem;
    color: var(--text-main);
}

.section-desc {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 85px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-tagline {
    color: var(--text-muted);
    margin: 22px 0;
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--gold);
    color: #070605;
    transform: translateY(-4px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-list li {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-contact-link {
    color: var(--gold-light);
    font-weight: 600;
}

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

.footer-bottom {
    background-color: #050403;
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

/* Scroll Reveal Classes */
.reveal-init {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

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

    .map-container {
        grid-template-columns: 1fr;
    }

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

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

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 34px;
        gap: 22px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .tasting-card {
        padding: 28px;
    }

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

    .whatsapp-float {
        bottom: 22px;
        right: 22px;
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
}
