/* ==========================================================================
   CSS Resets & Core System variables
   ========================================================================== */
:root {
    /* Palette */
    --color-bg: #faf7f2;
    --color-surface: #ffffff;
    --color-text: #2c2520;
    --color-text-muted: #6b5c53;
    
    /* Branding */
    --color-accent: #c85a32; /* Terracota */
    --color-accent-hover: #b04923;
    --color-gold: #c59b27;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba56;
    
    /* Grid & Shadows */
    --shadow-subtle: 0 10px 30px rgba(44, 37, 32, 0.04);
    --shadow-premium: 0 25px 50px rgba(44, 37, 32, 0.08);
    --border-color: #eae3d8;
    
    /* Font families */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transition styles */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Header Style
   ========================================================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(234, 227, 216, 0.15);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-bg);
    letter-spacing: -0.5px;
}

.location-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-bg);
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d2216 0%, #160c07 100%);
    overflow: hidden;
    padding: 0 2rem;
}

/* Subtle background particles / overlay for high aesthetic */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(197, 155, 39, 0.1) 0%, transparent 60%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-avatar {
    width: 280px;
    margin: 0 auto 2rem auto;
    opacity: 0.5; /* 50% transparency */
    transition: var(--transition-smooth);
}

.hero-avatar:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.avatar-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px; /* Smooth rounded corners matching cards, no border/frame */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: #eae3d8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* ==========================================================================
   Buttons (Fitts' Law Optimizations)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-whatsapp);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-accent {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(200, 90, 50, 0.3);
}

.cta-block-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    border-radius: 15px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, #d87046 100%);
    box-shadow: 0 10px 30px rgba(200, 90, 50, 0.4);
    animation: pulseGlow 3s infinite ease-in-out;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(200, 90, 50, 0.6);
}

.btn-icon {
    margin-right: 0.6rem;
    font-size: 1.3rem;
}

/* ==========================================================================
   Storytelling Section (A História de Alba)
   ========================================================================== */
.story-section {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover {
    transform: scale(1.02);
}

.story-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.02);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem; /* Whitespace logic to reduce cognitive load */
}

/* ==========================================================================
   Showcase Section (Os Bolos Grid Blocks)
   ========================================================================== */
.showcase-section {
    padding: 8rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.showcase-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.showcase-intro {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.showcase-block:last-child {
    margin-bottom: 0;
}

.showcase-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.showcase-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(44, 37, 32, 0.15);
}

.showcase-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-image-container:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-text-container {
    padding: 1rem 0;
}

.cake-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.sensory-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.showcase-reverse .showcase-image-container {
    grid-column: 2;
}

.showcase-reverse .showcase-text-container {
    grid-column: 1;
    grid-row: 1;
}

.special-occasions-block {
    position: relative;
    padding: 4rem;
    margin-top: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff8f5 0%, #f7eee7 100%);
    border: 1px solid #ead6c9;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.special-occasions-block::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: rgba(200, 90, 50, 0.08);
}

.special-occasions-image {
    border: 6px solid #ffffff;
}

.special-menu-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.btn-special-menu {
    min-width: min(100%, 390px);
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #d91462 0%, #f02d7d 55%, #ff5798 100%);
    color: #ffffff;
    padding: 1.4rem 1.7rem 1.4rem 2rem;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 32px rgba(217, 20, 98, 0.38);
    animation: specialMenuPulse 2.8s infinite ease-in-out;
}

.btn-special-menu:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #c70d55 0%, #e51e70 55%, #f7478c 100%);
    box-shadow: 0 20px 42px rgba(217, 20, 98, 0.5);
}

.btn-special-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.4rem;
}

.special-menu-hint {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

@keyframes specialMenuPulse {
    0%, 100% {
        box-shadow: 0 15px 32px rgba(217, 20, 98, 0.34);
    }
    50% {
        box-shadow: 0 18px 40px rgba(217, 20, 98, 0.55);
    }
}

/* ==========================================================================
   Testimonials (Prova Social)
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-surface);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-gold);
}

.rating {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ==========================================================================
   Urgency Section
   ========================================================================== */
.urgency-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #eae3d8 0%, var(--color-bg) 100%);
    text-align: center;
}

.urgency-container {
    max-width: 800px;
}

.urgency-badge {
    display: inline-block;
    background-color: #ffebe0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.urgency-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.urgency-text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.scarcity-hint {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: #1e1916;
    color: #eae3d8;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #a7978e;
    max-width: 400px;
}

.main-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.main-footer p {
    color: #a7978e;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(234, 227, 216, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #8c7d75;
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(200, 90, 50, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(200, 90, 50, 0.7);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-reverse .showcase-image-container {
        grid-column: 1;
    }
    .showcase-reverse .showcase-text-container {
        grid-column: 1;
    }
    .showcase-image {
        height: 380px;
    }
    .special-occasions-block {
        padding: 3rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .main-header {
        position: relative;
        padding: 0.8rem 0;
        background: #2b160e;
        border-bottom-color: rgba(234, 227, 216, 0.12);
    }
    .header-container {
        justify-content: center;
        padding: 0 1rem;
    }
    .main-header .logo {
        display: none;
    }
    .location-tag {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
    }
    .hero-section {
        height: auto;
        min-height: calc(100vh - 58px);
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-avatar {
        width: min(240px, 72vw);
        margin-bottom: 1.5rem;
        opacity: 0.85;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .story-title {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cta-block-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .special-occasions-block {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .btn-special-menu {
        width: 100%;
        min-width: 0;
        padding: 1.2rem 1.25rem;
    }
}

/* ==========================================================================
   Image Menu Page
   ========================================================================== */
.menu-image-page {
    min-height: 100vh;
    padding: 2rem 1.25rem 8rem;
    background:
        radial-gradient(circle at 10% 5%, rgba(255, 193, 203, 0.35), transparent 32rem),
        radial-gradient(circle at 90% 50%, rgba(200, 90, 50, 0.1), transparent 35rem),
        #fff8f7;
}

.menu-image-header {
    width: min(100%, 1120px);
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.menu-back-link,
.menu-header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.menu-back-link {
    color: #9f3d5c;
    background: #ffffff;
    border: 1px solid rgba(159, 61, 92, 0.16);
}

.menu-header-whatsapp {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
}

.menu-back-link:hover,
.menu-header-whatsapp:hover {
    transform: translateY(-3px);
}

.menu-image-main {
    width: min(100%, 1024px);
    margin: 0 auto;
}

.menu-image-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.menu-image-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.menu-image-intro p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.menu-artwork-frame {
    margin: 0;
    padding: 0.75rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(78, 44, 43, 0.16);
}

.menu-artwork {
    width: 100%;
    border-radius: 20px;
}

.menu-floating-whatsapp {
    position: fixed;
    z-index: 20;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.3rem;
    border-radius: 18px;
    color: #ffffff;
    background: var(--color-whatsapp);
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(25, 130, 63, 0.35);
    transition: var(--transition-smooth);
}

.menu-floating-whatsapp:hover {
    transform: translateY(-4px);
    background: var(--color-whatsapp-hover);
}

.menu-whatsapp-icon {
    font-size: 1.55rem;
}

.menu-floating-whatsapp strong,
.menu-floating-whatsapp small {
    display: block;
    line-height: 1.3;
}

.menu-floating-whatsapp small {
    margin-top: 0.15rem;
    opacity: 0.88;
}

@media (max-width: 768px) {
    .menu-image-page {
        padding: 1rem 0.75rem 7rem;
    }
    .menu-image-header {
        margin-bottom: 2.5rem;
    }
    .menu-header-whatsapp {
        display: none;
    }
    .menu-image-intro {
        padding: 0 0.75rem;
    }
    .menu-artwork-frame {
        padding: 0.35rem;
        border-radius: 16px;
    }
    .menu-artwork {
        border-radius: 12px;
    }
    .menu-floating-whatsapp {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        justify-content: center;
    }
}

/* ==========================================================================
   Cardapio (Menu) Pink Confectionery Styles
   ========================================================================== */
.cardapio-body.pink-theme {
    background-color: #fff0f3;
    background-image: radial-gradient(circle at 5% 5%, rgba(255, 182, 193, 0.4) 0%, transparent 40%),
                      radial-gradient(circle at 95% 95%, rgba(255, 192, 203, 0.3) 0%, transparent 40%);
    font-family: 'Outfit', sans-serif;
    color: #4E2C2B;
    padding: 3rem 1rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardapio-paper-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem 3.5rem;
    box-shadow: 0 15px 45px rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.1);
    overflow: hidden;
    z-index: 2;
}

/* Return Button navigation */
.back-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.btn-back-pink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E91E63;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    background: #fff0f3;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(233, 30, 99, 0.12);
}

.btn-back-pink:hover {
    background: #E91E63;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
}

/* Header Section */
.pink-cardapio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 5;
}

.header-logo-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-illustration {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.06);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(233, 30, 99, 0.08);
}

.baking-icon {
    font-size: 1.8rem;
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.brand-pink-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #D81B60;
    line-height: 0.9;
}

.brand-pink-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.cartoon-avatar {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff0f3;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.1);
    transition: var(--transition-smooth);
}

.cartoon-avatar:hover {
    transform: scale(1.05) rotate(2deg);
}

.pink-divider-flower {
    text-align: center;
    font-size: 1.1rem;
    color: #FFB6C1;
    letter-spacing: 12px;
    margin-bottom: 2.5rem;
    opacity: 0.7;
}

/* Styled Text Boxes for layout container cards */
.info-textbox {
    background: #FFF9FA;
    border-radius: 20px;
    border: 1.5px solid rgba(233, 30, 99, 0.08);
    padding: 2.2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.02);
}

/* Promo Box Spec */
.promo-box {
    background-color: #FFF0F3;
    border-color: rgba(233, 30, 99, 0.15);
    text-align: center;
    padding: 1.5rem 2rem;
}

.promo-badge-pink {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #E91E63;
    display: block;
    margin-bottom: 0.4rem;
}

.promo-text-highlight {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4E2C2B;
    opacity: 0.9;
}

/* Centralized Pricing Table Section */
.tabela-valores-section {
    text-align: center;
}

.tabela-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D81B60;
    text-align: center;
    margin-bottom: 1.8rem;
}

.table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
}

.tabela-valores {
    width: 100%;
    max-width: 650px;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.03);
    border: 1px solid rgba(233, 30, 99, 0.06);
}

.tabela-valores th {
    background-color: #fff0f3;
    color: #D81B60;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(233, 30, 99, 0.08);
}

.tabela-valores td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid #fff0f3;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: #4E2C2B;
    transition: var(--transition-smooth);
}

.tabela-valores tr:last-child td {
    border-bottom: none;
}

.tabela-valores tr:hover td {
    background-color: #FFF5F7;
    color: #D81B60;
}

.size-badge-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #D81B60;
    color: #ffffff;
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.val-old {
    font-size: 0.9rem;
    color: #a7978e;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.val-new {
    font-size: 1.15rem;
    color: #D81B60;
    font-weight: 700;
}

.hint-click {
    font-size: 0.85rem;
    color: #a7978e;
    text-align: center;
    font-style: italic;
}

/* Flavors Box Section */
.sabores-pink-section {
    background: #FFF9FA;
}

.sabores-pink-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D81B60;
    text-align: center;
    margin-bottom: 2rem;
}

.sabores-pink-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.sabores-pink-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4E2C2B;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(233, 30, 99, 0.08);
}

.item-bullet {
    color: #FFB6C1;
    font-size: 1rem;
}

/* Footer Section */
.pink-cardapio-footer {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid #fff0f3;
    padding-top: 2rem;
    margin-top: 1rem;
}

.pink-contact-badge-whatsapp, .pink-contact-badge-instagram {
    display: inline-flex;
}

.pink-contact-badge-whatsapp a, .pink-contact-badge-instagram a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.pink-contact-badge-whatsapp a {
    background-color: #25D366;
}

.pink-contact-badge-whatsapp a:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.15);
}

.pink-contact-badge-instagram a {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.pink-contact-badge-instagram a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.18);
}

/* Responsive Rules */
@media (max-width: 768px) {
    .cardapio-paper-wrapper {
        padding: 2.2rem 1.5rem;
        border-radius: 20px;
    }
    
    .pink-cardapio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    
    .header-logo-side {
        align-items: center;
    }
    
    .cartoon-avatar {
        width: 100px;
        height: 100px;
    }
    
    .sabores-pink-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-textbox {
        padding: 1.5rem 1.2rem;
    }
    
    .tabela-valores th, .tabela-valores td {
        padding: 0.8rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .val-new {
        font-size: 1.05rem;
        display: block;
    }
    
    .size-badge-pink {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}
