:root {
    --primary: #1B4D3E;
    /* Verde Floresta Profundo */
    --primary-light: #2C6E58;
    --accent: #D4AF37;
    /* Dourado Elegante */
    --text-dark: #1A2622;
    --text-light: #F4F7F5;
    --bg-light: #F7F9F7;
    /* Branco levemente esverdeado */
    --bg-white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow: 0 10px 30px rgba(27, 77, 62, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.preco {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(27, 77, 62, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    /* Imagem de fundo de uma torta brownie ou ambiente de café */
    background: url('https://images.unsplash.com/photo-1565557623262-b51c2513a641?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.8), rgba(44, 110, 88, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.promo-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    display: inline-block;
}

.promo-text {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.2rem !important;
}

.promo-details {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #e6c65c;
    border-color: #e6c65c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '❦';
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* Sobre */
.sobre {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo floral (abstrato com CSS) */
.sobre::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 77, 62, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.features-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Cardápio */
.cardapio {
    background-color: var(--bg-light);
}

.grid-cardapio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card-produto {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-produto:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.card-produto:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.preco {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.btn-pedir {
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-pedir:hover {
    background: var(--primary-light);
}

/* Cupom Section */
.cupom-section {
    background: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
}

.cupom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 77, 62, 0.85);
}

.cupom-content {
    position: relative;
    z-index: 1;
}

.cupom-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.cupom-content>p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cupom-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.cupom-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.code-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--primary);
    font-family: monospace;
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem auto;
    width: fit-content;
}

#btn-copiar {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

#btn-copiar:hover {
    color: var(--accent);
}

.validade {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.btn-whatsapp-cupom {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-whatsapp-cupom:hover {
    background: #1ebc57;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

/* Galeria */
.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.grid-galeria img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.grid-galeria img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    box-shadow: var(--shadow);
}

/* Localização */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.endereco-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.endereco-texto {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0 !important;
}

.btn-rotas {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .sobre-container {
        grid-template-columns: 1fr;
    }

    .sobre-img {
        order: -1;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Galeria captions */
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.galeria-item img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    color: #fff;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
}

/* Feedbacks */
.feedbacks {
    background: #fff;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feedback-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 2rem;
    position: relative;
}

.feedback-stars {
    color: #f7c948;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feedback-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

/* Responsividade extra */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
    }

    .galeria-item img {
        height: 220px;
    }

    .feedback-card {
        padding: 1.5rem;
    }
}

/* Clube do Bosque */
.clube {
    background: var(--bg-light);
}
.clube-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}
.qr-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 1.5rem;
    text-align: center;
}
.qr-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem;
}
.qr-caption {
    color: #555;
    margin-bottom: 1rem;
}
.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
.benefits li {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.benefits i {
    color: var(--primary);
}
@media (max-width: 768px) {
    .clube-grid {
        grid-template-columns: 1fr;
    }
}