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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #2C5530;
}

.logo h1 span {
    color: #D4AF37;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #2C5530;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: #2C5530;
    color: white;
}

.btn-secondary:hover {
    background-color: #1e3a22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Seções Gerais */
section {
    padding: 60px 0;
}

.page-header {
    background: linear-gradient(135deg, #2C5530 0%, #1e3a22 100%);
    color: white;
    text-align: center;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sobre */
.sobre {
    background-color: white;
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.empresa-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.empresa-info h3 {
    color: #2C5530;
    margin-bottom: 1rem;
}

.empresa-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Serviços */
.servicos {
    background-color: #f8f9fa;
}

.servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servico-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.servico-card h3 {
    font-size: 1.5rem;
    color: #2C5530;
    margin: 1.5rem 1.5rem 1rem;
}

.servico-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Programa de Fidelidade Preview */
.fidelidade-preview {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    text-align: center;
}

.fidelidade-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fidelidade-preview p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Página de Fidelidade */
.fidelidade-content {
    background-color: white;
}

.fidelidade-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.niveis-fidelidade h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.niveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nivel-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 5px solid;
}

.nivel-card:hover {
    transform: translateY(-5px);
}

.nivel-card.bronze {
    border-top-color: #CD7F32;
}

.nivel-card.prata {
    border-top-color: #C0C0C0;
}

.nivel-card.ouro {
    border-top-color: #FFD700;
}

.nivel-card.diamante {
    border-top-color: #B9F2FF;
}

.nivel-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C5530;
}

.nivel-header p {
    color: #666;
    margin-bottom: 1.5rem;
}

.beneficios {
    list-style: none;
}

.beneficios li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.beneficios li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.beneficios li:last-child {
    border-bottom: none;
}

.como-funciona h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.funciona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.passo {
    text-align: center;
    padding: 2rem;
}

.passo-numero {
    width: 60px;
    height: 60px;
    background-color: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.passo h3 {
    color: #2C5530;
    margin-bottom: 1rem;
}

.promocoes-especiais h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.promocao-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.promocao-card:hover {
    transform: translateY(-5px);
}

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

.promocao-card h3 {
    color: #2C5530;
    margin: 1.5rem 1.5rem 1rem;
}

.promocao-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.termos-fidelidade {
    background-color: #f8f9fa;
    padding: 3rem 0;
    border-radius: 15px;
    margin: 4rem 0;
}

.termos-fidelidade h2 {
    text-align: center;
    color: #2C5530;
    margin-bottom: 2rem;
}

.termos-content ul {
    max-width: 800px;
    margin: 0 auto;
}

.termos-content li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.cta-fidelidade {
    text-align: center;
    padding: 3rem 0;
}

.cta-fidelidade h2 {
    color: #2C5530;
    margin-bottom: 1rem;
}

.cta-fidelidade p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contato */
.contato {
    background-color: #f8f9fa;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C5530;
    margin-bottom: 3rem;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info h3 {
    color: #2C5530;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #2C5530;
    display: block;
    margin-bottom: 0.5rem;
}

.contato-form {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contato-form h3 {
    color: #2C5530;
    margin-bottom: 2rem;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Páginas de Documentos */
.documento {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.documento h2 {
    color: #2C5530;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
}

.documento h3 {
    color: #2C5530;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.documento p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.6;
}

.documento ul {
    margin: 1rem 0 1rem 2rem;
}

.documento li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.data-atualizacao {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2C5530;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-links h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6b4e;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content,
    .fidelidade-intro,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .documento {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .niveis-grid,
    .funciona-grid,
    .promocoes-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .servico-card,
    .nivel-card,
    .promocao-card {
        margin: 0 10px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.nivel-card,
.promocao-card {
    animation: fadeInUp 0.6s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Formulário dinâmico */
.contato-form button[type="submit"] {
    width: 100%;
}

.contato-form input:valid,
.contato-form select:valid,
.contato-form textarea:valid {
    border-color: #28a745;
}

.contato-form input:invalid:not(:placeholder-shown),
.contato-form select:invalid:not(:placeholder-shown),
.contato-form textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}