/* Custom Fonts */
@font-face {
    font-family: 'Tangerine';
    src: url('/fonts/Tangerine-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tangerine';
    src: url('/fonts/Tangerine-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    --yellow: #F9C521;
    --burgundy: #641828;
    --orange: #F16813;
    --ink: #2B1B1B;
    --bg: #FFFFFF;
    --bg-soft: #FAF7F1;
    --max: 1200px;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Typography */
body {
    font-family: system-ui, -apple-system, 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    color: var(--burgundy);
    margin-bottom: 0.5em;
}

.h1 {
    font-size: clamp(28px, 5vw, 56px);
    color: var(--burgundy);
    letter-spacing: 0.04em;
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 1em;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 0.75em;
}

h4 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* .lead class removed - now using unified .section-desc */

/* New utility classes for homepage */
.title-xl {
    font-size: clamp(24px, 4.5vw, 48px);
    letter-spacing: 0.06em;
    color: var(--burgundy);
    line-height: 1.2;
    margin-bottom: 0.2em;
    text-transform: uppercase;
}

.grid4 {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1080px) {
    .grid4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    padding: 0;
    background: #fff;
}

.card-img::before {
    content: "";
    display: block;
    aspect-ratio: 3 / 4;
}

.card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.values {
    margin-top: 28px;
}

.value-card {
    background: #F3F1ED;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
    padding: 26px;
    margin-bottom: 28px;
}

.value-card h3 {
    color: var(--orange);
    font-size: clamp(22px, 3.2vw, 32px);
    margin: 0 0 10px;
}

.value-card p {
    color: #7A6A3E;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 992px) {
    .stagger {
        margin-top: 32px;
    }
}

/* Footer updates */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-contact .contact-item a {
    color: var(--burgundy);
    text-decoration: none;
}

.footer-contact .contact-item a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.footer-contact .icon {
    color: var(--burgundy);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact .icon svg {
    width: 20px;
    height: 20px;
}

.footer-content {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Links */
a {
    text-decoration: none;
    color: var(--burgundy);
    transition: var(--transition);
}

a:hover {
    color: var(--orange);
}

/* Utility Classes */
.container {
    width: min(100% - 2*var(--gutter), var(--container));
    margin-inline: auto;
    max-width: var(--max, 1200px);
}

/* Consistent section padding - responsive */
.section {
    padding: clamp(40px, 8vw, 64px) 0;
}

.section.soft {
    background: var(--bg-soft);
}

/* Consistent container width */
:root {
    --container-wide: 1200px;
}

.grid2 {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Button */
.btn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 0 #8c4c17;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background: #d55a0f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 #8c4c17;
}

/* ========== NEW HEADER SYSTEM ========== */
:root {
    /* Header-specific variables */
    --yellow: #f4be21;
    --maroon: #5d1320;
    --orange: #e96f16;
    --cta-shadow: #7a3d00;
    --tagline: #e1682c;

    /* Header sizes */
    --h-default: 112px;
    --h-sticky: 72px;
    --logo-default: 170px;
    --logo-sticky: 130px;
    --tagline-default: 22px;
    --tagline-sticky: 16px;

    /* Layout */
    --container: 1160px;
    --gutter: 24px;
    --cta-w: 220px; /* fixed width to keep layout stable */
}

/* Base (mobile + desktop) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #F9C521; /* Yellow background by default */
  transition: background .25s ease, box-shadow .25s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Desktop+ only */
@media (min-width: 1024px) {
  .site-header {
    transition: height .2s ease;
  }
  .site-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 96px;
    display: flex;
    align-items: center;
    gap: 32px; /* logo↔tagline↔nav group */
  }

  .site-header .brand img {
    height: 80px;
    width: auto;
    display: block;
  }

  /* One-line layout with non-wrapping */
  .site-header .tagline {
    margin-left: 32px;
    margin-right: 32px;
    color: #DB6626;
    font-family: 'Tangerine', cursive; /* Use Tangerine font */
    font-weight: 400;
    font-size: 32px; /* Larger size for Tangerine */
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto; /* allow tagline to shrink first */
    margin: 0;
    line-height: 1.2;
  }

  .site-header .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
  }

  .site-header .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header .menu a {
    color: #5D0D1B;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
  }
  .site-header .menu a:hover { opacity: .85; }

  .site-header .btn-coffee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 26px;
    border-radius: 14px;
    background: #E96F1A;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    text-transform: none;
    box-shadow: 0 6px 0 #8E4512, 0 6px 18px rgba(0,0,0,0.12);
    transform: translateZ(0);
    transition: filter .2s ease, transform .05s ease;
  }
  .site-header .btn-coffee:hover { filter: brightness(1.05); }
  .site-header .btn-coffee:active { transform: translateY(1px); }

  /* Sticky state - WHITE when scrolling */
  .site-header.is-sticky {
    background: #FFFFFF !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  .site-header.is-sticky .header-inner { height: 72px; }
  .site-header.is-sticky .brand img {
    height: 60px;
    content: url('/assets/img/padaria_alfa_long.png');
  }
  .site-header.is-sticky .tagline { font-size: 24px; } /* Larger sticky size for Tangerine */
  .site-header.is-sticky .menu a { font-size: 17px; }
  .site-header.is-sticky .btn-coffee { height: 46px; padding: 0 22px; }

  /* Coffee Breaks page: keep layout, hide button only */
  .site-header[data-page="coffeebreaks"] .btn-coffee {
    visibility: hidden; /* keeps width so layout doesn't shift */
    pointer-events: none;
  }
}

/* Hide mobile elements on desktop */
@media (min-width: 1024px) {
  .header-mobile,
  .btn-coffee-mobile {
    display: none !important;
  }
}

/* Hide desktop elements on mobile */
@media (max-width: 1023px) {
  .header-inner {
    display: none !important;
  }
}

/* ===== Mobile ===== */
@media (max-width: 1023px){
  .site-header {
    background: #F2B51E;
    padding: 0;
    position: relative;
  }


  /* Show mobile header elements */
  .header-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Tagline, logo e burger tutti centrati in colonna */
  .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px 12px;
  }

  .brand-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 12px 0;
  }

  .site-header .header-mobile .brand-mobile img {
    height: 100px !important;
    width: calc(100vw - 32px) !important;
    max-width: 500px !important;
    object-fit: contain !important;
    max-height: 100px !important;
    min-height: 100px !important;
    min-width: 300px !important;
  }

  /* Hamburger menu centrato */
  .burger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    align-self: center;
  }

  .burger span {
    width: 24px;
    height: 3px;
    background: #2B1B1B;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .burger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Tagline in cima con margin-top */
  .tagline-mobile {
    font-family: 'Tangerine', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: #5C152B;
    text-align: center;
    padding: 0 16px;
    margin: 16px 0 8px 0;
    line-height: 1.1;
    width: 100%;
  }

  /* Mobile navigation dropdown */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F2B51E;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-mobile.is-open {
    display: block;
  }

  .menu-mobile {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .menu-mobile a {
    color: #5C152B;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(92, 21, 43, 0.2);
  }

  /* Mobile Coffee Breaks button: sticky pill più in alto e più evidente */
  .btn-coffee-mobile {
    position: fixed !important;
    bottom: 35px !important;
    right: 16px !important;
    background: #F16813 !important;
    color: white !important;
    padding: 16px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    box-shadow: 0 6px 20px rgba(241, 104, 19, 0.5) !important;
    z-index: 1001 !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(10px) !important;
  }

  .btn-coffee-mobile:hover {
    background: #d1560f !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(241, 104, 19, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  /* Mobile sticky state - WHITE when scrolling */
  .site-header.is-sticky {
    background: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  /* Nascondi tagline quando sticky */
  .site-header.is-sticky .tagline-mobile {
    display: none !important;
  }

  /* Logo + burger in riga quando sticky */
  .site-header.is-sticky .header-top {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 16px !important;
    min-height: 50px !important;
  }

  .site-header.is-sticky .brand-mobile {
    margin: 0 !important;
    width: auto !important;
  }

  .site-header.is-sticky .header-mobile .brand-mobile img {
    height: 50px !important;
    width: 220px !important;
    object-fit: contain !important;
    max-height: 50px !important;
    max-width: 220px !important;
    min-height: 50px !important;
    min-width: 200px !important;
  }

  .site-header.is-sticky .burger span {
    background: #5C152B !important;
  }

  .site-header.is-sticky .nav-mobile {
    background: #FFFFFF;
    border-top: 1px solid rgba(92, 21, 43, 0.1);
  }

  /* Hide mobile coffee button on coffeebreaks page */
  body:has(.site-header[data-page="coffeebreaks"]) .btn-coffee-mobile {
    display: none !important;
  }
}

/* Main Content */
main {
    margin-top: 0;
}

/* ===== Unified Page Hero Styles ===== */
.page-hero {
    padding: clamp(60px, 10vw, 80px) 0;
    text-align: center;
    background: var(--bg-soft);
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== UNIFIED SECTION STYLES ===== */
/* Standardized titles for all sections - higher specificity */
h1.section-title,
h2.section-title,
.section-title {
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 3rem !important; /* 48px */
    font-weight: 700 !important;
    color: #601C2D !important; /* bordeaux */
    text-align: center !important;
    line-height: 1.2 !important;
    margin: 0 0 24px 0 !important;
    letter-spacing: -0.02em !important;
}

/* Standardized descriptions for all sections - higher specificity */
p.section-desc,
.section-desc {
    font-family: system-ui, -apple-system, 'Roboto', Arial, sans-serif !important;
    font-size: 1.25rem !important; /* 20px */
    font-weight: 400 !important;
    color: #601C2D !important; /* bordeaux */
    text-align: center !important;
    line-height: 1.6 !important;
    margin: 0 auto 40px auto !important; /* Added 40px bottom margin for proper spacing */
    max-width: 1000px !important; /* Increased from 800px to 1000px for wider desktop text */
}

/* Mobile responsive */
@media (max-width: 768px) {
    h1.section-title,
    h2.section-title,
    .section-title {
        font-size: 2.2rem !important; /* 35.2px */
    }

    p.section-desc,
    .section-desc {
        font-size: 1.125rem !important; /* 18px */
    }
}



.hero-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Product Cards */
.product-card, .package-card {
    background: var(--bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover, .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card img, .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3, .package-card h3 {
    margin-bottom: 0.5em;
    padding: 0 20px;
    padding-top: 20px;
}

.product-card p {
    padding: 0 20px 20px;
}

/* Package Cards */
.packages-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.package-content {
    padding: 20px;
}

.package-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1em;
}

.package-items {
    list-style: none;
    margin-bottom: 1em;
}

.package-items li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.package-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.package-ideal {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 600;
}

.package-card.featured {
    position: relative;
    border: 2px solid var(--orange);
}

.package-card.featured::before {
    content: "Mais Popular";
    position: absolute;
    top: 16px;
    right: -16px;
    background: var(--orange);
    color: white;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(15deg);
    z-index: 10;
}

/* Services Grid */
.service-item {
    text-align: center;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-item h3 {
    margin-bottom: 1em;
    font-size: 1.2em;
}

/* Contact Page */
.contact-details .contact-item {
    margin-bottom: 2em;
}

.contact-item h3 {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.hours-list p {
    margin-bottom: 0.25em;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%; /* Make form fill available height */
  display: flex;
  flex-direction: column;
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: var(--burgundy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 104, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 8px 12px;
    background: var(--bg-soft);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--orange);
    color: white;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 0.5em;
}

.cta-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

/* Footer */
.site-footer {
    background: var(--bg-soft);
    color: var(--burgundy);
    padding: clamp(48px, 8vw, 64px) 0 32px;
}

.footer-content {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-info h3,
.footer-hours h4,
.footer-social h4 {
    color: var(--burgundy);
    margin-bottom: 1.2em;
    font-size: 1.25em;
    font-weight: 700;
}

.footer-info p,
.footer-hours p,
.footer-contact span {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 0.8em;
}

.footer-info p strong {
    font-weight: 800;
    font-size: 1.15em;
}

.footer-info address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.footer-info a,
.footer-hours a,
.footer-social a {
    color: var(--burgundy);
}

.footer-info a:hover,
.footer-hours a:hover,
.footer-social a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(100, 24, 40, 0.2);
    font-size: 16px;
    opacity: 0.8;
}

/* Fixed footer brand/logo */
.site-footer__brand,
footer .brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-block: 1rem 0.5rem;
    text-align: left;
}

/* Footer info section layout */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Bigger footer logo */
.site-footer__brand img,
footer .brand img {
    height: 220px;
    width: auto;
    margin-bottom: 0;
}

/* CNPJ text aligned with logo */
.footer-info p {
    margin: 12px 0 0 0;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 64px;
    }

    footer .brand img {
        height: 140px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
        text-align: center;
    }

    /* Mobile footer - logo centered */
    footer .brand,
    .site-footer__brand {
        justify-content: center;
    }

    footer .brand img,
    .site-footer__brand img {
        height: 180px;
        max-width: none;
        width: auto;
    }

    /* Mobile footer info still centered */
    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-info p {
        text-align: center;
        margin: 12px 0 0 0;
    }

    .footer-info h3,
    .footer-hours h4 {
        font-size: 1.15em;
    }

    .footer-info p,
    .footer-hours p,
    .footer-contact span {
        font-size: 1em;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 48px 0;
}

/* Location/Map */
.map-container {
    text-align: center;
}

.map-note {
    margin-top: 8px;
    font-size: 14px;
    color: var(--burgundy);
    font-style: italic;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ===== Contact page ===== */


/* 3 cards */
.contact-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px){
  .contact-cards { 
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.contact-card {
  background: #5C152B;
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  min-height: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.contact-card i {
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
}
.contact-card .card-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

/* Split: form + map */
.contact-split {
  display: grid; gap: 28px; align-items: stretch; /* Changed from start to stretch for equal height */
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){
  .contact-split { grid-template-columns: 1fr; }
}
.contact-form .field {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #5C152B;
  transition: border-color 0.2s ease;
}
.contact-form .field:focus {
  outline: none;
  border-color: #5C152B;
  background: #fff;
}
.contact-form .row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px){ .contact-form .row { grid-template-columns: 1fr; } }

.btn-outline {
  border: 2px solid #5C152B;
  color: #5C152B;
  background: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-outline:hover { 
  background: #5C152B; 
  color: #fff; 
  transform: translateY(-1px);
}

.map-frame {
  border: 3px solid #5C152B;
  border-radius: 8px;
  overflow: hidden;
  height: 100%; /* Make map fill available height to match form */
  min-height: 400px; /* Minimum height for usability */
}

/* Como Chegar */
.h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #5C152B;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: 0 0 24px;
}
/* .como-text class removed - now using unified .section-desc */

/* ===== COFFEE BREAKS PAGE STYLES ===== */

/* Coffee Breaks variables */
:root {
    --cb-burgundy: #5C152B;
    --cb-gold: #A38E5B;
    --cb-orange: #F07418;
    --cb-orange-dark: #8C4D12;
    --cb-bg-soft: #F7F4EF;
    --cb-copy: #45202A;
    --cb-font-heading: 'Libre Baskerville', Georgia, serif;
    --cb-font-body: 'Poppins', system-ui, sans-serif;
}

/* White background for pricing section */
.cb-pricing--white {
    background: #FFFFFF !important;
}

/* Coffee Breaks Introduction */
.cb-intro {
    text-align: center;
    padding: 48px 0 32px;
    background: var(--bg);
}

.cb-intro__title {
    font-family: var(--cb-font-heading);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--cb-burgundy);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.cb-intro__description {
    font-family: var(--cb-font-body);
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--cb-copy);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* HERO base */
.cb-hero {
    position: relative;
    margin: 28px auto 36px;
    width: 92%;
    max-width: 1140px;
}

.cb-hero__track {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: clamp(520px, 62vh, 700px);
    background: #111;
}

/* Slides stack; only one visible at a time */
.cb-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

.cb-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.cb-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(92, 21, 43, .45);
}

.cb-hero__content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0 24px;
    max-width: 980px;
}

.cb-hero__title {
    font-family: "Libre Baskerville", serif;
    font-weight: 800;
    letter-spacing: .01em;
    font-size: clamp(36px, 5vw, 68px);
    margin: 0 0 10px;
}

.cb-hero__subtitle {
    font-size: clamp(18px, 2.1vw, 28px);
    line-height: 1.32;
    margin: 0 0 22px;
}

/* CTA */
.cb-cta {
    display: inline-block;
    background: #F07418;
    border: 3px solid #8C4D12;
    color: #fff;
    font-weight: 800;
    padding: 14px 26px;
    border-radius: 10px;
    box-shadow: 0 6px 0 #8C4D12;
    transform: translateY(0);
    transition: transform .15s ease, filter .15s ease;
    text-decoration: none;
}

.cb-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    color: #fff;
}

/* Dots */
.cb-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.cb-hero__dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.cb-hero__dots button.is-active {
    background: #fff;
}

/* RIGHT-ALIGNED content + smaller type + white text */
.cb-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* right align block */
    text-align: right;
    color: #fff;
    margin-right: clamp(16px, 5vw, 64px);
}

.cb-hero__title {
    color: #fff;
    font-size: clamp(30px, 4.2vw, 52px); /* smaller */
    margin-bottom: 6px;
}

.cb-hero__subtitle {
    color: #fff;
    font-size: clamp(16px, 1.8vw, 22px); /* smaller */
    margin-bottom: 16px;
}

/* Arrows (appear on hover) */
.cb-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity .2s ease, background-color .2s ease, transform .15s ease;
}

.cb-hero__arrow:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.04);
}

.cb-hero__arrow--prev {
    left: 10px;
}

.cb-hero__arrow--next {
    right: 10px;
}

.cb-hero__track:hover ~ .cb-hero__arrow,
.cb-hero:hover .cb-hero__arrow {
    opacity: 1; /* show on hover */
}

/* Tweak dots so they don't clash with right alignment */
.cb-hero__dots {
    bottom: 12px;
}

/* Pricing Section */
.cb-pricing {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--cb-bg-soft);
}

.cb-grid {
    display: grid;
    gap: 32px;
    max-width: var(--container-wide, 1200px);
    margin: 0 auto;
    padding-inline: clamp(16px, 3vw, 32px);
    align-items: stretch; /* Ensure all cards have same height */
}

@media (min-width: 900px) {
    .cb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Cards - Fixed structure */
.pricing-card,
.cb-card {
    position: relative;
    overflow: visible; /* IMPORTANT: avoid clipping */
    background: white;
    border-radius: 16px;
    border: 2px solid #E5E5E5; /* Added border for contrast on white background */
    transition: all 0.3s ease;
    display: flex; /* Added flexbox */
    flex-direction: column; /* Stack vertically */
    height: 100%; /* Fill grid cell height */
}

.cb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.cb-card--featured,
.pricing-card--featured {
    border: 3px solid var(--cb-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); /* Only featured card gets this shadow */
}

.cb-card--featured:hover,
.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Fixed header with proper padding for ribbon */
.pricing-card__header,
.cb-card__header {
    position: relative;
    padding: 2.5rem 24px 16px; /* Reduced from 3.75rem to 2.5rem and bottom from 20px to 16px */
    text-align: center;
}

.cb-card__header--basic {
    background: var(--cb-gold);
    border-radius: 16px 16px 0 0; /* Round top corners only */
}

.cb-card__header--featured {
    background: var(--cb-orange);
    border-radius: 16px 16px 0 0; /* Round top corners only */
}

.cb-card__header--vip {
    background: #DE8F1C;
    border-radius: 16px 16px 0 0; /* Round top corners only */
}

/* Fixed ribbon positioning */
.pricing-card__ribbon {
    position: absolute;
    top: -18px; /* pull ribbon above header */
    left: 50%;
    transform: translateX(-50%);
    background: #ea6b0b; /* orange */
    color: #fff;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Consistent title sizing */
.pricing-card__title,
.cb-card__title {
    font-family: var(--cb-font-heading);
    font-size: clamp(20px, 3vw, 24px); /* consistent sizing */
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.02em;
}

.cb-card__price {
    text-align: center;
    padding: 16px 24px; /* Reduced from 24px to 16px vertical padding */
    border-bottom: 1px solid #f0f0f0;
}

.cb-card__currency {
    font-size: 18px;
    color: var(--cb-burgundy);
    vertical-align: top;
    margin-right: 4px;
}

.cb-card__amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--cb-burgundy);
    line-height: 1;
}

.cb-card__per {
    font-size: 16px;
    color: var(--cb-copy);
    margin-left: 4px;
}

.cb-card__items {
    list-style: none;
    padding: 16px 24px; /* Reduced from 24px to 16px vertical padding */
    margin: 0;
    font-family: var(--cb-font-body);
    flex: 1; /* Grow to push button to bottom */
}

.cb-card__items li {
    padding: 4px 0; /* Reduced from 8px to 4px vertical spacing */
    position: relative;
    padding-left: 24px;
    color: var(--cb-copy);
    line-height: 1.3; /* Tighter line height from 1.4 to 1.3 */
}

.cb-card__items li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-size: 20px;
    line-height: 1;
}

.cb-card__items li strong {
    font-weight: 600;
}

.cb-card__btn {
    width: calc(100% - 48px);
    margin: 0 24px 16px; /* Reduced bottom margin from 24px to 16px */
    padding: 12px 20px; /* Reduced from 14px to 12px vertical padding */
    border: none;
    border-radius: 8px;
    font-family: var(--cb-font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cb-card__btn--basic,
.cb-card__btn--vip {
    background: transparent;
    border: 2px solid var(--cb-gold);
    color: var(--cb-burgundy);
}

.cb-card__btn--basic:hover {
    background: var(--cb-gold);
    color: var(--cb-burgundy);
    transform: translateY(-1px);
}

.cb-card__btn--vip:hover {
    background: #DE8F1C; /* Match VIP header color */
    color: white;
    transform: translateY(-1px);
}

.cb-card__btn--featured {
    background: var(--cb-orange);
    border: 2px solid var(--cb-orange-dark);
    color: white;
}

.cb-card__btn--featured:hover {
    background: #ff8533;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 116, 24, 0.3);
}

/* Request Form Section - Fixed width and textarea */
.section--special-request,
.cb-request {
    padding: clamp(40px, 8vw, 64px) 0;
    background: var(--cb-bg-soft);
    position: relative;
}

.section--special-request .container,
.cb-request .container {
    max-width: var(--container-wide, 1200px); /* match site's container */
    margin-inline: auto;
    padding-inline: clamp(16px, 3vw, 32px);
}

.cb-request::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F7F4EF' fill-opacity='0.3'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243L8.2 0H5.373zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657l1.414 1.414L13.857 0H11.03z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.cb-request__title {
    font-family: var(--cb-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--cb-burgundy);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.special-form,
.cb-form {
    max-width: 900px; /* wider to match content grid */
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.cb-form__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .special-form__row--two,
    .cb-form__grid .cb-form__field:nth-child(2):not(.cb-form__field--full) {
        display: grid;
        grid-template-columns: 1fr minmax(90px, 140px); /* email + captcha */
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .cb-form__grid {
        grid-template-columns: 1fr;
    }
}

.cb-form__field--full {
    grid-column: 1 / -1;
}

.cb-form__field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--cb-font-body);
    font-weight: 600;
    color: var(--cb-burgundy);
    font-size: 14px;
}

.cb-form__field input,
.cb-form__field textarea,
.special-form input,
.special-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--cb-font-body);
    font-size: 16px;
    color: var(--cb-copy);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.cb-form__field input:focus,
.cb-form__field textarea:focus,
.special-form input:focus,
.special-form textarea:focus {
    outline: none;
    border-color: var(--cb-burgundy);
    background: white;
    box-shadow: 0 0 0 3px rgba(92, 21, 43, 0.1);
}

/* Fixed textarea height */
.cb-form__field textarea,
.special-form textarea {
    min-height: 9rem; /* reduced from 120px to ~144px */
    max-height: 14rem;
    resize: vertical;
}

.cb-form__btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 14px 24px;
    background: var(--cb-gold);
    border: none;
    border-radius: 8px;
    color: var(--cb-burgundy);
    font-family: var(--cb-font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cb-form__btn:hover {
    background: #8a7a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(163, 142, 91, 0.3);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .cb-hero {
        min-height: 450px;
    }

    .cb-hero__title {
        font-size: clamp(28px, 6vw, 48px);
    }

    .cb-hero__subtitle {
        font-size: clamp(16px, 3vw, 22px);
    }

    .cb-hero__cta {
        padding: 14px 28px;
        font-size: 16px;
    }

    .cb-pricing {
        padding: 60px 0;
    }

    .cb-card--featured {
        transform: none;
    }

    .cb-card--featured:hover {
        transform: translateY(-8px);
    }

    .cb-form {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .cb-request {
        padding: 60px 0;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ===== NEW FOOTER SPEC - 3 COLUMN GRID ===== */

/* Base container */
.site-footer {
  background: #FAF7F0;
  border-top: 1px solid #EDE8DF;
  color: #5D0D1B; /* maroon */
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 48px;
}

/* Grid (desktop) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.2fr; /* Brand | Contact | Hours */
  align-items: start;
  gap: 36px;
}

/* Brand block */
.footer-logo {
  display: block;
  height: auto;
  max-height: 140px;   /* bigger logo */
  width: auto;
  margin-bottom: 18px;
}
.cnpj {
  font-size: 20px;
  margin: 8px 0 0;
  color: #5D0D1B;
}

/* Contact block */
.footer-contact {
  display: grid;
  gap: 12px; /* tighter vertical spacing */
}
.contact-item {
  display: grid;
  grid-template-columns: 32px 1fr; /* bigger icons */
  align-items: start;
  column-gap: 12px;
}
.contact-item .icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  color: #5D0D1B;
}
.contact-item .icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact a {
  color: #5D0D1B;
  text-decoration: none;
  line-height: 1.35;
}
.footer-contact a:hover {
  text-decoration: underline;
  color: #DB6626;
}
.footer-contact address {
  font-style: normal;
  line-height: 1.35;
  color: #5D0D1B;
}

/* Hours block */
.footer-hours h3 {
  font-size: 30px;
  margin: 0 0 12px;
  color: #5D0D1B;
  font-family: Georgia, 'Times New Roman', serif;
}
.footer-hours p {
  margin: 6px 0;
  line-height: 1.35;
  color: #5D0D1B;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #EDE8DF;
  margin-top: 32px;
  font-size: 16px;
  opacity: 0.8;
}

/* Footer policies */
.footer-policies {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-policies a {
  color: #F16813;
  text-decoration: underline;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-policies a:hover {
  opacity: 1;
}

/* Typography sizing (desktop) */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer address {
  font-size: 20px;
}

/* Responsive: tablet/mobile */
@media (max-width: 1199.98px) {
  .site-footer .footer-inner { padding: 36px 20px 44px; }
  .footer-grid { gap: 28px; }
  .footer-hours h3 { font-size: 28px; }
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr;   /* single column */
    text-align: center;
    gap: 24px;
  }

  .footer-logo {
    margin: 0 auto 16px;
    max-width: 260px; /* keep logo nicely visible */
    width: 100%;
    height: auto;
  }

  /* keep icon left of text, but center the overall row */
  .contact-item {
    grid-template-columns: 28px auto;
    justify-content: center;
  }

  .footer-hours h3 { font-size: 26px; }
  .site-footer,
  .site-footer p,
  .site-footer a,
  .site-footer address { font-size: 18px; }
}

/* Accessibility focus styles */
.footer-contact a:focus-visible,
.footer-hours a:focus-visible {
  outline: 3px solid #DB6626;
  outline-offset: 3px;
  border-radius: 4px;
}