* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2D5016;
    --secondary-color: #C4A77D;
    --accent-color: #40C057;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-cream: #FAF7F2;
    --bg-white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Header & Navigation
   =================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a.active {
    color: white;
    font-weight: 600;
}

.whatsapp-btn-nav {
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.whatsapp-btn-nav:hover {
    transform: scale(1.05);
}

/* ===================================
   Hamburger Menu Button
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://static.readdy.ai/image/9b341e8f713a911c406452b96078bafc/96deb2e068ea55340cdafb2a3e2ac131.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #37A84D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 192, 87, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #B39669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 167, 125, 0.4);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 2rem;
}

.section-cream {
    background: var(--bg-cream);
}

.section-white {
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header h3 {
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ===================================
   Voucher Section
   =================================== */
.voucher-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.voucher-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.voucher-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.voucher-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.voucher-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===================================
   About Section
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    text-align: center;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-duration {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===================================
   Tags
   =================================== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Vouchers Products
   =================================== */
.vouchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.voucher-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.voucher-product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.voucher-info {
    padding: 2rem;
}

.voucher-price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.voucher-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.voucher-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.voucher-validity {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.review-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-initials {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-author-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 15px;
}

.review-summary h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===================================
   Content Section
   =================================== */
.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.content-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p, .contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.7;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: #3D2817;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.footer-col p, .footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===================================
   Logo size - increased significantly
   =================================== */
.logo img {
    display: block;
    max-height: 450px;
    width: auto;
}

/* ===================================
   Ocultar link PAGI.com.br
   =================================== */
a[href="https://pagi.com.br/"] {
    display: none;
}

/* ===================================
   Mobile Responsive Styles
   =================================== */
@media (max-width: 768px) {
    /* Show hamburger menu button */
    .hamburger {
        display: flex;
    }

    /* Ajuste do logo para mobile - aumentado para 150px */
    .logo img {
        max-height: 150px;
        height: 150px;
    }

    /* Reduzir padding do header em 50% no mobile */
    header {
        padding: 0.5rem 0;
    }

    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: background 0.3s;
        color: white;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .whatsapp-btn-nav {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }

    /* Stack button containers vertically */
    .hero-buttons,
    .voucher-buttons {
        flex-direction: column;
    }

    /* Make buttons full-width on mobile */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        box-sizing: border-box;
    }

    /* Remove flex-wrap from hero-buttons on mobile */
    .hero-buttons {
        flex-wrap: nowrap;
    }

    /* Hero heading sizes on mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    /* Reordenar conteúdo da Hero no mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    /* Definir ordem dos elementos na Hero mobile */
    .hero h1 {
        order: 1;
    }

    .hero h2 {
        order: 3;
    }

    .hero-buttons {
        order: 2;
    }

    .hero p {
        order: 4;
    }

    /* Section title size on mobile */
    .section-title {
        font-size: 2rem;
    }

    /* Grid layouts - single column on mobile */
    .voucher-card,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .vouchers-grid {
        grid-template-columns: 1fr;
    }
}
