/* Reset básico e estilos gerais */
* {
    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: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a {
    text-decoration: none;
    color: #27ae60;
    transition: color 0.3s ease;
}

a:hover {
    color: #219653;
}

ul {
    list-style: none;
}

/* Header e navegação */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #f0f0f0;
}

nav ul li a.active {
    background-color: #27ae60;
    color: white;
}

/* Seção Hero */
.hero {
    background-image: url('https://images.pexels.com/photos/8969237/pexels-photo-8969237.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

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

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Seção de Recursos */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.features .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature {
    flex: 1 1 300px;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.feature h2 {
    margin-bottom: 15px;
    color: #27ae60;
}

/* Seção Sobre */
.about {
    padding: 80px 0;
    background-color: #f0f9f0;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #27ae60;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background-color: #27ae60;
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    flex: 1 1 200px;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.company-info {
    flex: 1 1 300px;
}

.company-info p {
    margin-bottom: 8px;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h3 {
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #27ae60;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #bbb;
}

/* Cabeçalho de página */
.page-header {
    background-color: #27ae60;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Programa de Fidelidade */
.loyalty-program {
    padding: 80px 0;
}

.program-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.program-intro img {
    flex: 1 1 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-text {
    flex: 1 1 400px;
}

.program-text h2 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 2rem;
}

.program-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.program-steps h2, .program-benefits h2, .join-program h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #27ae60;
}

.steps, .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.step, .benefit {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover, .benefit:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3, .benefit h3 {
    margin-bottom: 15px;
    color: #27ae60;
}

.benefit i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.join-program {
    text-align: center;
    padding: 40px;
    background-color: #f0f9f0;
    border-radius: 10px;
}

.join-program p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Termos e Política de Privacidade */
.terms, .privacy {
    padding: 60px 0;
}

.terms-content, .privacy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.terms-content h2, .privacy-content h2 {
    color: #27ae60;
    margin: 30px 0 15px;
}

.terms-content h2:first-child, .privacy-content h2:first-child {
    margin-top: 0;
}

.terms-content p, .privacy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-content ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.last-update {
    text-align: right;
    font-style: italic;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature, .step, .benefit {
        flex: 1 1 100%;
    }
    
    .program-intro {
        flex-direction: column;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .company-info, .footer-links {
        margin-bottom: 30px;
    }
}