
html {
  scroll-behavior: smooth;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

#notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notification {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Estilização da seção hero */
.hero {
    background-color: #111c20;
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container flexível */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.highlight{
    font-size: 20px;
    padding: 5px 10px;
    color: white;
    background: black;
}

/* Estilo da headline */
h1 {
    
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}


.blue-highlight {
    color: #111c20;
    background: #03f588;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Estilo da subheadline */
.subhead {
    
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 10px;
}

.subhead strong {
    font-weight: 700;
}

/* Imagem centralizada */
img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .subhead {
        font-size: 1rem;
    }
}


/* Estilização da seção de oferta */
.offer {
    background: #111c20;
    text-align: center;
    padding: 4px 20px 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.container-2 {
    background-color: #111c20;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Preço antigo */
.old-price {    
    font-size: 2.6rem;
    font-weight: 800;
    color: red;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.old-price span {
    text-decoration: line-through;
}

/* Texto intermediário */
.text {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Preço novo */
.new-price {    
    font-size: 4.9rem;
    font-weight: 800;
    color: #008000;
    text-transform: uppercase;
}

/* Texto de segurança */
.risk-free {    
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Botão de CTA */
.cta-button {
    display: inline-block;
    background: #03f588;;
    color: #111c20;    
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: #2FA748;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 480px) {
    .old-price {
        font-size: 1.6rem;
    }

    .new-price {
        margin-top: -16px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

/* Estilização da seção de benefícios */
.benefits {
    background: #D7DEE6;
    text-align: left;
    padding: 40px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits2 {
    background: #D7DEE6;
    text-align: left;
    padding: 20px 20px 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container alinhado à esquerda */
.container-3 {
    max-width: 800px;
    width: 100%;
}

/* Estilo do título */
.titulosessao {
    
    font-size: 2rem;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

/* Cada benefício alinhado à esquerda */
.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

/* Ícone do check */
.benefit-item img {
    width: 24px;
    height: 24px;
}

/* Texto do benefício */
.benefit-item p {
    
    font-size: 1.2rem;
    font-weight: 600;
    color: gray;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    .benefit-item p {
        font-size: 1rem;
    }
}
/* Fundo azul do título */
.bonus-section {
    background: #111c20;
    text-align: center;
    padding: 40px 20px;
}

/* Cabeçalho do bônus */
.bonus-header {
    max-width: 900px;
    margin: 0 auto;    
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.b-highlight {
    background: #03f588;
    color: #111c20;
    padding: 3px 8px;
    border-radius: 4px;
}

.bonus-header .urgent {
    color: red;
    font-weight: bold;
    margin-top: 5px;
}

/* Bloco branco contendo texto e imagem */
.bonus-container {
    background: white;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

/* Conteúdo textual */
.bonus-content {
    flex: 1;
}

.bonus-content h2 {
    
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
}

.bonus-content .blue-text {
    color: #00AEEF;
}

.bonus-content p {
    
    font-size: 0.8rem;
    color: black;
    margin: 10px 0;
}

/* Preço */
.old-price2 {
    
    font-size: 1.2rem;
    font-weight: bold;
}

.old-price2 span {
    text-decoration: line-through;
    color: red;
    font-size: 20px;
}

.new-price2 {
    color: green;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Imagem */
.bonus-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .bonus-container {
        flex-direction: column;
        text-align: center;
    }

    .bonus-content {
        margin-bottom: 20px;
    }

    .bonus-content h2 {
        font-size: 1.6rem;
    }

    .bonus-content p {
        font-size: 0.8rem;
    }

    .old-price2, .new-price2 {
        font-size: 1rem;
    }
}

/* Estilização da seção */
.offers-section {
    text-align: center;
    padding: 50px 20px;
    background: #D7DEE6;
}

/* Título */
.offers-title{
    color: #111c20;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

/* Container com duas colunas */
.offers-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Estilização das caixas */
.offer-box {
    background: #111c20;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.focus{
    border: solid #03f588 3px;
}



/* Cabeçalho do plano */
.plan-header {
    background: #333;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 8px;
}

.plan-header-2 {
    background: #be0101;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 8px;
}

.plan-tag {
    background: #03f588;
    color:#111c20;
    margin-top: -48px;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 5px;
    width: 160px;
    text-align: center;    
    justify-self: center;
    border-radius: 20px;
    border: solid #03f588 3px;
}

/* Subtítulo */
.plan-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

.besttag{
    font-size: 1.3rem;
    color: #03f588;
    font-weight: bold;
    margin: 10px 0;
}


/* Preço */
.plan-price {
    font-size: 4.1rem;
    font-weight: 800;
    color: #008000;
    text-transform: uppercase;
}

/* Lista de benefícios */
.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-benefits li {
    font-size: 1rem;
    color: white;
    text-align: left;
    margin-bottom: 10px;
}

.checkmark {
    color: #16a34a;
    font-weight: bold;
    margin-right: 8px;
}

/* Lista de bônus */
.plan-bonus {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.plan-bonus li {
    font-size: 1rem;
    color: #b91c1c;
    text-align: left;
    margin-bottom: 10px;
    text-decoration: line-through;
}

.crossmark {
    color: #b91c1c;
    font-weight: bold;
    margin-right: 8px;
}

/* Preço antigo */
.planbest-old-price{    
    font-size: 1.7rem;
    font-weight: 800;
    color: red;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.planbest-old-price span {
    text-decoration: line-through;
}

/* Texto intermediário */
.planbest-text {
    
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Texto de segurança */
.planbest-limit{    
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 15px 0px;
}


/* Responsividade */
@media (max-width: 768px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilização da seção */
.danos-section {
    padding: 50px 20px;
    background: #ffffff;
}

/* Título */
.danos-section h2 {    
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

/* Container com duas colunas */
.danos-container {
    display: flex;    
    background: white;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;    
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);    
    border-radius: 10px;
}

/* Estilização das caixas */
.danos-box {
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

/* Cada benefício alinhado à esquerda */
.danos-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .danos-container {
        flex-direction: column;
        align-items: center;
    }
}


/* Estilização da seção garantia */
.garantia-section {
    background: linear-gradient(135deg, #041024 0%, #00274D 100%);
    color: white;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container flexível */
.garantia-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Estilo da headline */
.garantia-container h1 {
    
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}


.g-blue-highlight {
    color: #1EADFF;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Estilo da subheadline */
.subtext {
    
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 10px;
}

.subtext strong {
    font-weight: 700;
}

/* Imagem centralizada */
.garantia-container img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.img2 {
    max-width: 100%;
    height: 20px;
    margin-top: 20px;
}

/* Botão de CTA */
.g-cta-button {
    display: inline-block;
    background: #34C759;
    color: white;    
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.g-cta-button:hover {
    background: #2FA748;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .garantia-container h1 {
        font-size: 1.8rem;
    }

    .subtext {
        font-size: 1rem;
    }

    .g-cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

.faq-section {
    background: white;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container flexível */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.faq-section h1 {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}



.faq-list {
    list-style-type: none;
    padding: 0;
}

.faq-list li {
    background-color: #f9f9f9;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


.question {
    font-weight: bold;
}

.answer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.answer.show {
    display: block;
}


/* Botão de CTA */
.access-button {
    display: inline-block;
    background: #34C759;
    color: white;    
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.access-button:hover {
    background: #2FA748;
    transform: scale(1.05);
}