

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    display: block;
    text-decoration: none;
}

.cont{
    color: red;
    font-weight: bold;
}

:root {
    --color-blue-400: #60a5fa;
    --color-blue-500: #3b82f6;
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    --color-blue-800: #1e40af;
    --color-blue-900: #1e3a8a;
    --color-blue-950: #172554;
    --color-green-500: #22c55e;
    --color-green-600: #16a34a;
    --color-yellow-400: #facc15;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-white: #ffffff;
    --color-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--color-white);
    background: linear-gradient(to bottom, var(--color-blue-900), var(--color-black));
    min-height: 100vh;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

nav {
    display: none;
}

@media (min-width: 768px) {
    nav {
        display: flex;
        gap: 1.5rem;
    }
    
    nav a:hover {
        color: var(--color-blue-400);
        transition: color 0.3s;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-green {
    background-color: var(--color-green-500);
    color: var(--color-white);
}

.btn-green:hover {
    background-color: var(--color-green-600);
}

.btn-blue {
    background-color: var(--color-blue-600);
    color: var(--color-white);
}

.btn-blue:hover {
    background-color: var(--color-blue-700);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
    }
}

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

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
        margin-bottom: 0;
    }
}

.hero h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 3rem;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-image {
        width: 50%;
    }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Features Section */
.features {
    background-color: var(--color-blue-950);
    padding: 4rem 0;
}

.features h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: rgba(30, 58, 138, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.feature-icon {
    background-color: rgba(59, 130, 246, 0.2);
    padding: 0.75rem;
    border-radius: 9999px;
    width: fit-content;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-gray-300);
}

/* WhatsApp CTA */
.whatsapp-cta {
    padding: 3rem 0;
}

.whatsapp-cta-inner {
    background-color: var(--color-green-600);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.whatsapp-cta h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.whatsapp-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-green-600);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

/* Plans Section */
.plans {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.plans h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.plans-intro {
    text-align: center;
    color: var(--color-gray-300);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plan-card {
    background: linear-gradient(to bottom, var(--color-blue-900), var(--color-blue-950));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-blue-800);
}

.plan-card.popular {
    background: linear-gradient(to bottom, var(--color-blue-800), var(--color-blue-900));
    border: 2px solid var(--color-blue-500);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-blue-500);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

.plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.check-icon {
    color: var(--color-green-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
}

.plan-btn.primary {
    background-color: var(--color-blue-500);
}

.plan-btn.primary:hover {
    background-color: var(--color-blue-600);
}

.plan-btn.secondary {
    background-color: var(--color-blue-600);
}

.plan-btn.secondary:hover {
    background-color: var(--color-blue-700);
}

/* App Section */
.app-section {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .app-section {
        flex-direction: row;
    }
}

.app-content {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .app-content {
        width: 50%;
        margin-bottom: 0;
    }
}

.app-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.app-section p {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: 1.5rem;
}

.app-features {
    margin-bottom: 1.5rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: var(--color-yellow-400);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.app-feature h3 {
    font-weight: bold;
}

.app-feature p {
    font-size: 1rem;
    margin-bottom: 0;
}

.app-image {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .app-image {
        width: 50%;
    }
}

.app-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    background-color: var(--color-blue-950);
    padding: 4rem 0;
}

.faq h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(30, 58, 138, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question-icon {
    color: var(--color-blue-400);
}

.faq-answer {
    color: var(--color-gray-300);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-inner {
    background: linear-gradient(to right, var(--color-blue-900), var(--color-blue-800));
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

/* Footer */
footer {
    background-color: var(--color-blue-950);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: right;
    }
}

.footer-info p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--color-green-500);
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
}

.whatsapp-float a:hover {
    background-color: var(--color-green-600);
}

/* Icons */
.icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.btncont{
    background-color: rgb(247, 243, 5);
    border: none;
    padding: 15px 20px;
    width: max-content;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.466);
}


body.ativo{
    overflow-y: hidden;
}

.container{
    background-color: #000000;
    color: white;
}


.ar{
    background-color: black;
    width: 100vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 22px;
}

.div-img{
    display: flex;
    flex: 1;
    gap: 20px;
}


.comprar button{
    background:none ;
    border: none;

}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}






h4{
    font-weight: bold;
}






.beneficios{
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text{
    margin-top: 10px;
}

.ar-container{
    width: 100vw;
    padding: 10px;
    margin: 20px auto;
    max-width: 1000px;

}

.ar-container img{
    width: 100%;
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 10px;
}

header a{
    display: block;
    color: white;
   
}

article{
    height:calc(100vh - 70px);
    width: 100vw;
    background: #1E2935;
}

.artigo{
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0px;
    color: white;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
}



.artigo p{
    margin-top: 20px;
}

#countdown{
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: red;
}


.content{
    display: flex;
    align-items: center;
    height: 70%;
    flex-direction: column;
    justify-content: center;
}

.dado p{
    margin-top: 10px;
}

.anuncio{
    margin-top: 10px;
    width: 300px;
    border: 1px solid white;
    overflow-y: auto;
}

.link{
  background-color: #ffd700;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px;
    margin: 10px auto;
    max-width: 230px;
}

.banner{
    margin: 0 auto;
}

.anuncio img{
    object-fit: cover;
    width: 300px;
}

.content button{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 50px;
}


.content .ins{
    color: #c5c5c5;
    font-size: 12px;
    margin-top: 10px;
}

.content span{
    font-size: 30px;
}

.instrucoes{
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.instrucoes img{
    height: 300px;
    width: 100%;
    margin-top: 20px;
    max-width: 960px;
    object-fit: cover;
}

.instrucoes h2{
    margin-bottom: 10px;
    margin-top: 20px;
}



.bv{
    margin: 10px auto;
}


.modal div{
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding: 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    background-color: white;
}



.instrucoes h1{
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.carr{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0px;
    background-color: #ffd700;
}

.relacionado{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.relacionado p{
    font-weight: 800;
    color: blue;
    margin-bottom: 10px;
}

.instrucoes p{
    line-height: 25px;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    height: 60px;
}

.vermais{
    border: none;
    margin: 0 auto;
    background-color: white;
    font-size: 25px;
    border: 1px solid rgb(192, 191, 191);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
    text-align: center;
}

.instrucoes button a::hover{
   background-color: red;
}

ol li{
    line-height: 25px;
}

.instrucoes a{
    display: inline;
}

.fechar{
    color: white;
}

ol{
    display: flex;
    flex-direction: column;
    
}

.anima{
    animation: anima .3s linear;
}

@keyframes anima {
    from{
        transform: translate3d(0,-100px,0);
    } to{
        transform: translate3d(0,0,0);  
    }
}

ol li a{
    display: inline;
}

table{ 
    border-spacing: 1; 
    border-collapse: collapse; 
    background:white;
    border-radius:6px;
    overflow:hidden;
    max-width:800px; 
    width:80%;
    margin:0 auto;
    position:relative;
    margin-top: 40px;
    margin-bottom: 10px;
}
td,th{ 
    padding-left:8px
}
thead tr{ 
    height:60px;
    background: rgb(0, 0, 2);
    font-size:20px;
    color: white;
}
    
tbody tr{ 
    height:48px; 
    border-bottom:1px solid #E3F1D5;  
    }
    
td,th{ 
    text-align:left;
}

.online{
    color: green;
}

.modelos{
    text-align: center;
}

@media (max-width:768px){
    .comprar{
        flex-direction: column;
    }
}






#popup-content p{
    margin-top: 10px;
    margin-bottom: 10px;
}

#popup-content h3{
    margin-top: 10px;
}


#popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  
  #popup-content {
    background: #fff;
    padding: 20px;
    width: 380px;
    height: 570px;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .cookie-notice {
    position: fixed;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    align-items: center;
    border: none;
    color: #fff;
    padding: 10px;
    text-align: center;
  }
  
  .cookie-notice button {
    background-color: #4CAF50;
    color: white;
    margin-top: 5px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  
  .cookie-notice button:hover {
    background-color: #45a049;
  }
  
  .hidden {
    display: none;
  }
  
  #continueBtn {
    margin-top: 20px;
    background-color: green;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    cursor: pointer;
  }















  .container{
    background-color: blue;
    border: 6px;
    color: black;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }