/* Reset básico e fontes */
body, h1, h2, h3, p, a {
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* Usar uma fonte mais adequada depois */
    box-sizing: border-box;
}

body {
    background-color: #1B4121; /* Verde escuro principal */
    color: #ffffff; /* Texto branco padrão */
}

/* Header e Logo */
header {
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.1); /* Leve fundo para destacar */
}

#logo {
    max-height: 50px; /* Ajustar tamanho conforme necessário */
    width: auto;
}

/* Seção Hero */
#hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #1B4121; /* Fundo verde */
}

#hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

#hero h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #f0f0f0;
    font-weight: normal;
}

.cta-button {
    background-color: #D4A73B; /* Dourado/Amarelo */
    color: #1B4121; /* Texto verde escuro */
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #b8860b; /* Dourado mais escuro no hover */
}

#hero .slogan {
    margin-top: 25px;
    font-size: 1.3em;
    font-style: italic;
    color: #D4A73B;
}

/* Seção Benefícios */
#benefits {
    padding: 60px 5%;
    text-align: center;
    background-color: #16351b; /* Tom ligeiramente diferente de verde */
}

#benefits h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.benefit-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background-color: #1B4121; /* Verde escuro */
    padding: 30px;
    border-radius: 10px;
    width: calc(33% - 40px); /* Ajustar para responsividade */
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #D4A73B; /* Borda dourada sutil */
}

.card i {
    font-size: 3em; /* Tamanho do ícone */
    color: #D4A73B; /* Cor dourada */
    margin-bottom: 20px;
    display: block; /* Garante que o ícone fique em sua própria linha */
}

.card h3 {
    font-size: 1.4em;
    color: #D4A73B; /* Título dourado */
    margin-bottom: 15px;
}

.card p {
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Seção Promoções */
#promotions {
    padding: 60px 20px;
    text-align: center;
    background-color: #1B4121;
}

#promotions h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

#promotions p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.social-links a {
    color: #D4A73B; /* Links dourados */
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

/* Seção Final CTA */
#final-cta {
    padding: 80px 20px;
    text-align: center;
    background-color: #16351b;
}

#final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9em;
    color: #aaa;
    border-top: 1px solid #335a3a;
}

/* Media Queries para Responsividade */

/* Tablets e Telas Menores */
@media (max-width: 992px) {
    .card {
        width: calc(50% - 30px); /* 2 cards por linha */
    }
}

/* Celulares Maiores e Tablets Pequenos */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.2em;
    }
    #hero h2 {
        font-size: 1.2em;
    }
    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%; /* 1 card por linha */
        max-width: 400px;
        margin-bottom: 20px; /* Espaçamento entre cards empilhados */
    }
    #benefits {
        padding: 40px 5%;
    }
    #final-cta h2 {
        font-size: 2em;
    }
    #final-cta p {
        font-size: 1.1em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    #logo {
        max-height: 40px;
    }
    #hero {
        padding: 60px 15px;
    }
    #hero h1 {
        font-size: 1.8em;
    }
    #hero h2 {
        font-size: 1.1em;
    }
    #hero .slogan {
        font-size: 1.1em;
    }
    #benefits h2 {
        font-size: 1.8em;
    }
    .card {
        width: 90%; /* Ocupa mais largura em telas muito pequenas */
        padding: 20px;
    }
    .card h3 {
        font-size: 1.2em;
    }
    .card i {
        font-size: 2.5em;
    }
    #promotions h2 {
        font-size: 1.8em;
    }
    .social-links a {
        font-size: 1.1em;
        margin: 0 10px;
    }
    #final-cta {
        padding: 60px 15px;
    }
    #final-cta h2 {
        font-size: 1.8em;
    }
}



/* Estilos para Notificações */
#notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    display: flex;
    flex-direction: column-reverse; /* Novas notificações aparecem em cima */
    gap: 10px;
}

.notification {
    background-color: rgba(212, 167, 59, 0.9); /* Dourado com transparência */
    color: #1B4121; /* Texto verde escuro */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9em;
}

.notification .name {
    font-weight: bold;
}

.notification .location {
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}



/* Seção Por que Escolher */
#why-choose-us {
    padding: 60px 5%;
    text-align: center;
    background-color: #1B4121; /* Fundo verde escuro */
}

#why-choose-us h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.reasons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.reason {
    background-color: #16351b; /* Tom ligeiramente diferente de verde */
    padding: 30px;
    border-radius: 10px;
    width: calc(25% - 30px); /* 4 cards por linha, ajustar conforme necessário */
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #D4A73B; /* Borda dourada sutil */
    text-align: left; /* Alinhar texto à esquerda dentro do card */
}

.reason i {
    font-size: 2.5em; /* Tamanho do ícone */
    color: #D4A73B; /* Cor dourada */
    margin-bottom: 20px;
    display: block;
    text-align: center; /* Centralizar ícone */
}

.reason h3 {
    font-size: 1.3em;
    color: #D4A73B; /* Título dourado */
    margin-bottom: 15px;
    text-align: center; /* Centralizar título */
}

.reason p {
    font-size: 0.95em;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Ajustes responsivos para a nova seção */
@media (max-width: 1200px) {
    .reason {
        width: calc(50% - 30px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width: 768px) {
    #why-choose-us h2 {
        font-size: 1.8em;
    }
    .reasons {
        flex-direction: column;
        align-items: center;
    }
    .reason {
        width: 80%; /* 1 card por linha */
        max-width: 400px;
        margin-bottom: 20px;
        text-align: center; /* Centralizar texto em mobile */
    }
    .reason i {
        font-size: 2.2em;
    }
    .reason h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .reason {
        width: 90%;
        padding: 20px;
    }
}



/* Seção Promoção Roleta */
#roleta-promo {
    padding: 40px 5%;
    background-color: #16351b; /* Tom de verde ligeiramente diferente */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 2px solid #D4A73B;
    border-bottom: 2px solid #D4A73B;
}

.promo-content {
    flex: 1; /* Ocupa o espaço disponível */
    color: #ffffff;
    max-width: 50%;
}

.promo-content h2 {
    font-size: 2.0em;
    color: #D4A73B; /* Dourado */
    margin-bottom: 15px;
}

.promo-content h3 {
    font-size: 1.2em;
    color: #D4A73B; /* Dourado */
    margin-top: 20px;
    margin-bottom: 10px;
}

.promo-content p,
.promo-content li {
    font-size: 1.0em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.promo-content strong {
    color: #D4A73B; /* Dourado para destaque */
}

.promo-content ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
}

.promo-content .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #D4A73B;
    color: #1B4121;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}

.promo-content .cta-button:hover {
    background-color: #b88a2e; /* Dourado mais escuro no hover */
}

.promo-terms {
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 20px;
}

.promo-image {
    flex: 1; /* Ocupa o espaço disponível */
    text-align: center;
    max-width: 45%;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade para Seção Roleta */
@media (max-width: 992px) {
    #roleta-promo {
        flex-direction: column;
        text-align: center;
    }
    .promo-content,
    .promo-image {
        max-width: 90%;
    }
    .promo-content ol {
        text-align: left; /* Mantém lista alinhada à esquerda */
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 1.8em;
    }
    .promo-content p,
    .promo-content li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    #roleta-promo {
        padding: 30px 5%;
    }
    .promo-content h2 {
        font-size: 1.6em;
    }
    .promo-content,
    .promo-image {
        max-width: 100%;
    }
}



.promo-content .limited-offer {
    font-size: 1.1em;
    color: #ffffff; /* Branco para contraste */
    background-color: #c0392b; /* Vermelho para urgência */
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 15px;
}



/* Seção Testimonials (Feedbacks) */
#testimonials {
    padding: 60px 5%;
    background-color: #1B4121; /* Fundo verde escuro */
    text-align: center;
}

#testimonials h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #16351b; /* Tom ligeiramente diferente de verde */
    padding: 30px;
    border-radius: 10px;
    width: calc(33.333% - 30px); /* 3 cards por linha */
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a5a31; /* Borda verde um pouco mais clara */
    text-align: left;
    position: relative;
    padding-top: 40px; /* Espaço para as aspas */
}

.testimonial-card::before {
    content: '\f10d'; /* Ícone de aspas Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1.8em;
    color: #D4A73B; /* Dourado */
    opacity: 0.6;
}

.testimonial-card blockquote p {
    font-size: 0.95em;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.9em;
    color: #cccccc;
    display: block;
}

.testimonial-card cite strong {
    color: #ffffff;
    font-weight: bold;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #2a5a31; /* Linha divisória */
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #D4A73B; /* Dourado */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #cccccc;
}

/* Responsividade para Seção Testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 30px); /* 2 cards por linha */
    }
}

@media (max-width: 768px) {
    #testimonials h2 {
        font-size: 1.8em;
    }
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        width: 80%; /* 1 card por linha */
        max-width: 450px;
        margin-bottom: 20px;
    }
    .stats {
        gap: 30px;
    }
    .stat-item {
        width: calc(50% - 15px); /* 2 stats por linha */
    }
    .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 90%;
        padding: 20px;
        padding-top: 35px;
    }
    .testimonial-card::before {
        top: 10px;
        left: 15px;
        font-size: 1.5em;
    }
    .stat-item {
        width: 100%; /* 1 stat por linha */
    }
}



/* Estilos para Seção Promoções Atualizada */
#promotions {
    padding: 60px 5%; /* Ajustar padding se necessário */
    text-align: center;
    background-color: #16351b; /* Tom de verde ligeiramente diferente */
    border-top: 1px solid #2a5a31;
    border-bottom: 1px solid #2a5a31;
}

#promotions h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

#promotions p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.promo-channels {
    display: flex;
    flex-direction: column; /* Empilhar verticalmente por padrão */
    align-items: center;
    gap: 30px;
}

.channel-highlight {
    background-color: #1B4121; /* Verde escuro */
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #D4A73B; /* Borda dourada mais forte */
    width: 100%;
    max-width: 600px; /* Limitar largura máxima */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.channel-highlight h3 {
    font-size: 1.6em;
    color: #D4A73B; /* Dourado */
    margin-bottom: 15px;
}

.channel-highlight h3 i {
    margin-right: 10px;
}

.channel-highlight p {
    font-size: 1.0em;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-highlight strong {
    color: #ffffff; /* Branco para destaque no texto */
    font-weight: bold;
}

.telegram-button {
    background-color: #2AABEE; /* Azul do Telegram */
    color: #ffffff; /* Texto branco */
    padding: 12px 30px;
    font-size: 1.1em;
    border: none;
}

.telegram-button:hover {
    background-color: #1f8acb; /* Azul mais escuro no hover */
}

.channel-link {
    margin-top: 10px; /* Espaço acima do link do Instagram */
}

.channel-link a {
    color: #D4A73B; /* Links dourados */
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.channel-link a i {
    margin-right: 8px;
}

.channel-link a:hover {
    color: #ffffff;
}

/* Ajustes responsivos para a seção de promoções */
@media (max-width: 768px) {
    #promotions h2 {
        font-size: 1.8em;
    }
    .channel-highlight h3 {
        font-size: 1.4em;
    }
    .channel-highlight p {
        font-size: 0.95em;
    }
}

