        :root {
            --azul-profundo: #003366;
            --azul-tecnico: #005A9C;
            --amarelo-vivo: #FFD700;
            --amarelo-escuro: #FFC000;
            --vermelho-alerta: #E63946;
            --branco: #FFFFFF;
            --preto: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        a {
  text-decoration: none;
}

        body {
            background-color: var(--branco);
            color: var(--preto);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Barra de Desconto */
        .alert-bar {
            background-color: var(--vermelho-alerta);
            color: var(--branco);
            text-align: center;
            /* padding: 10px 0; */
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        /* Header */

        .header {
            background-color: var(--azul-profundo);
            padding: 1rem 5%;

        }
        .header{
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-fixed {
              /*background: #14225c !important;*/
              position: fixed;
              width: 100%;
              top: 0;
              z-index: 100;
              transform: translateY(-100%);
              animation: animate_menu 0.5s forwards;
              padding-bottom: 15px;
        }
        @keyframes animate_menu {
          from {
            background-color: var(--azul-profundo);
            opacity: 0;
          }
          to {
            background-color: var(--azul-profundo);
            opacity: 1;
            transform: initial;
          }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo img {
            height: 90px;
        }
        .logo-img{
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .logo-img-header{
            /* background-color: #E63946; */
            height: 100px !important;
         }
        .whatsapp-cta {
            display: flex;
            align-items: center;
            background-color: var(--amarelo-vivo);
            color: var(--azul-profundo);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .whatsapp-cta:hover {
            background-color: var(--amarelo-escuro);
            transform: scale(1.05);
        }
        
        .whatsapp-cta i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Hero Section */
 
        .hero {
            /* background: linear-gradient(to right, var(--azul-profundo) 50%, var(--branco) 50%); */
            min-height: 80vh;
            display: flex;
            align-items: center;
              background-image:
                linear-gradient(
                to bottom,
                rgba(0,0,0,0.3) 0%,
                rgba(0,0,0,0.6) 50%,
                rgba(0,0,0,0.9) 100%
                ),url("../imgs/banner.png");
            background-size: cover;
            background-position: center;
        }
        .hero::before {
            height: 500PX;
            
        }
         .hero-before{
            background-color: #666;
         }
        .hero-container {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            grid-template-columns: 1fr;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }
        .hero-content {
            color: var(--branco);
            padding-right: 2rem;
        }
        
        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            color: var(--amarelo-vivo);
        }
        
        .hero-content h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .hero-list {
            margin-bottom: 2rem;
        }
        
        .hero-list li {
            margin-bottom: 1rem;
            list-style: none;
            display: flex;
            align-items: center;
        }
        
        .hero-list li i {
            color: var(--amarelo-vivo);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }
        
        .price-tag {
            position: absolute;
            bottom: 20%;
            left: -50px;
            background-color: var(--amarelo-vivo);
            color: var(--azul-profundo);
            padding: 1.5rem;
            border-radius: 50%;
            width: 150px;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-weight: 900;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .price-tag .old-price {
            text-decoration: line-through;
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .price-tag .new-price {
            font-size: 2rem;
            line-height: 1;
        }
        
        .price-tag .installments {
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .cta-primary {
            background-color: var(--amarelo-vivo);
            color: var(--azul-profundo);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--amarelo-vivo);
            text-align: center;
            flex: 1;
        }
        
        .cta-primary:hover {
            background-color: transparent;
            color: var(--amarelo-vivo);
            transform: scale(1.05);
        }
        
        .cta-secondary {
            background-color: transparent;
            color: var(--amarelo-vivo);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--amarelo-vivo);
            text-align: center;
            flex: 1;
        }
        
        .cta-secondary:hover {
            background-color: var(--amarelo-vivo);
            color: var(--azul-profundo);
            transform: scale(1.05);
        }
        
        /* Features Section */
        .features {
            padding: 5rem 5%;
            background-color: var(--branco);
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--azul-profundo);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--amarelo-vivo);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: var(--branco);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--azul-tecnico);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--azul-profundo);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 5rem 5%;
            background-color: #f9f9f9;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: var(--branco);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-author h4 {
            font-size: 1.1rem;
            color: var(--azul-profundo);
        }
        
        .testimonial-author p {
            font-size: 0.9rem;
            color: #666;
        }
        
        .testimonial-rating {
            color: var(--amarelo-vivo);
            margin-bottom: 1rem;
        }
        
        /* Guarantee Section */
        .guarantee {
            padding: 5rem 5%;
            background-color: var(--azul-profundo);
            color: var(--branco);
            text-align: center;
        }
        
        .guarantee-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .guarantee h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
        
        .guarantee h2 span {
            color: var(--amarelo-vivo);
        }
        
        .guarantee p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        /* FAQ Section */
        .faq {
            padding: 5rem 5%;
            background-color: var(--branco);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--azul-profundo);
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            display: none;
            padding-top: 0.5rem;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* Final CTA */
        .final-cta {
            padding: 5rem 5%;
            background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('banner-cta.jpg');
            background-size: cover;
            background-position: center;
            color: var(--branco);
            text-align: center;
        }
        
        .final-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .final-cta h2 span {
            color: var(--amarelo-vivo);
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .timer {
            font-size: 2rem;
            font-weight: 700;
            color: var(--amarelo-vivo);
            margin-bottom: 2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--preto);
            color: var(--branco);
            text-align: center;
            padding: 2rem 5%;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo img {
            height: 100px;
            margin-bottom: 1rem;
        }
        
        .footer-contact {
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            margin-bottom: 1.5rem;
        }
        .href-footer{
            color: #fff;
        }
        .footer-social a {
            color: var(--branco);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .footer-social a:hover {
            color: var(--amarelo-vivo);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: var(--branco);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--amarelo-vivo);
        }
        
        .footer-copyright {
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 3rem;
                text-align: center;
            }
            
            .hero-list {
                text-align: left;
            }
            
            .price-tag {
                left: 50%;
                transform: translateX(-50%);
                bottom: -50px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            /* .hero {
                background: var(--azul-profundo);
            } */
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content h2 {
                font-size: 1.2rem;
            }
            
            .price-tag {
                width: 120px;
                height: 120px;
                font-size: 0.9rem;
            }
            
            .price-tag .new-price {
                font-size: 1.5rem;
            }
            
            .final-cta h2 {
                font-size: 2rem;
            }
        }

.fa-solid, .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}

[data-anime=scroll] {
    /* opacity: 0;
    transform: translate3d(0, -3000px, 0);
    transition: .3s */
    opacity: 0;
  /* transform: translateY(-60px); */
  /* transform: translateX(-60px); */
    transform: translate3d(-300px);

  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anime=scroll].ativo-scroll {
    /* opacity: 1;
    transform: translate3d(0, 0, 0);
    transform: translateY(0); */
 opacity: 1;
  transform: translateY(0);
}
.txt-box {
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 800;
  /* font-size: 27vw; */
  line-height: 0.8em;
  /* margin-top: -4vw !important; */
  margin-left: -2% !important;
  padding-bottom: 3rem;
  animation: animate 0.9s forwards;
}
.txt-box p{
 line-height: .5em;
 color: #fff;
 width: 100%;
 font-size: 8vw;
  letter-spacing: 0.2vw;
}

@keyframes animate {
    from {
        transform: translateY(0vw);
    }
    to {
        transform: translateY(-4vw);
    }
}

.txt-box-2 {
  font-family: 'Raleway',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 800;
  /* font-size: 27vw; */
  line-height: 0.8em;
  /* margin-top: -4vw !important; */
  margin-right: -1% !important;
  /* padding-bottom: 3rem; */
  animation: animate-2 0.4s forwards;
}
.txt-box-2 p{
    line-height: .5em;
    color: var(--amarelo-vivo);
    width: 100%;
    font-size: 8vw;
    letter-spacing: 0.2vw;
}
@keyframes animate-2 {
    from {
        transform: translateY(0vw);
    }
    to {
        transform: translateY(-6vw);
    }
}