
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');


 :root {
            --primary: #0041c9;
            --primary-light: #4361ee;
            --primary-dark: #00287e;
            --accent: #ff7d00;
            --text: #2b2d42;
            --text-light: #6c757d;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --max-width: 1300px;
            --section-padding: 5rem 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Exo 2';
        }

        body {
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
        }

        /* Layout Container */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }

        .logo-nav{
            height: 63px;
        }

        .logo-nav img{
            width: 160px;
        }

        /* Header/Navbar */
        header {
            background-color: var(--white);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
        }

        .logo span:last-child {
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 10px 30px;
            font-size: 17px;
            transition: var(--transition);
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
            background-color: #eff4ff;
            transition: .7s;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 7px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            border: 2px solid transparent;
        }

        .btn-outline {
            background: transparent;
            border-color: var(--text-light);
            color: var(--text);
            text-align: center;
            text-decoration: none;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            text-align: center;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            text-align: center;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            text-align: center;
            text-decoration: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 20px 0px 0px 0px;
            position: relative;
            overflow: hidden;
            background-image: url('../img/bg-2.png');
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }
        .hero-text img{
            width: 96%;
        }

        .hero-title {
            font-size: 55px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-description {
            font-size: 26px;
            font-weight: 300;
            color: #fff;
            margin-top: 2rem;
            margin-bottom: 3rem;
            max-width: 90%;
        }

        .hero-span-text{
                    color:#84bcff;
                    font-weight: 700;
                    font-size: 33px;
                }

        .hero-image {
            flex: 1;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-image img {
            width: 570px;
            height: 100%;
            object-fit: cover;
        }

        .cta-btn {
            padding: 1rem 5.5rem;
            font-size: 24px;
            font-weight: 600;
            background:#fff;
            color: var(--primary);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            box-shadow: 0 4px 15px rgba(58, 86, 212, 0.3);
            text-decoration: none;
        }

        .cta-btn:hover {
            background: #84bcff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(58, 86, 212, 0.4);
                       text-decoration: none;
        }

        .tabela{
            padding: 100px 0px;
        }
        .tabela-area{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .tabela-text{
            width: 45%;
        }
        .tabela-img{
            width: 55%;
        }
        .tabela-img img{ 
            width: 90%;
        }
        .tabela-text h4{
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 30px;
            font-weight: 600;
            color: var(--primary);
        }
        .tabela-text p{
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
        }

        .text-testimonial{
            width: 50%;
            padding-left: 50px;
        }

         .text-testimonial h4{
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 30px;
            font-weight: 600;
            color: var(--primary);
        }
        .text-testimonial p{
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
        }

        .plano{
            background-color: var(--primary);
            padding: 100px 0px;
        }

         .plano h4{
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #fff;
        }

         .plano p{
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
            color: #fff;
        }

        .plano-cards{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .p-cards{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 55px;
            width: 715px;
        }
        .p-cards img{
            width:90px;
        }
        .p-cards p{
            color: #fff;
            padding: 0px 0px 0px 20px;
            font-size: 23px;
            letter-spacing: 0.6px;
        }

        .p-cards2{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 55px;
            width: 500px;
        }
        .p-cards2 img{
            width:90px;
        }
        .p-cards2 p{
            color: #fff;
            padding: 0px 0px 0px 20px;
            font-size: 23px;
            letter-spacing: 0.6px;
        }

        
        .p-cards3{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 55px;
            width: 100%;
        }
        .p-cards3 img{
            width:90px;
        }
        .p-cards3 p{
            color: #fff;
            padding: 0px 0px 0px 20px;
            font-size: 23px;
            letter-spacing: 0.6px;
        }

        .negocio{
            padding: 120px 0px ;
            background-color: #f8f9fa;
        }
        .negocio-area{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .negocio-flex{
            display: flex;
            justify-content: space-between;
        }
        .negocio-img{
            width: 30%;
        }
        .negocio-img img{
            width: 100%;
        }
        .negocio-area{
            width: 65%;
        }
        .negocio-text{
            padding-bottom: 20px;
        }
        .negocio-text h4{
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--primary);
        }
        .negocio-text p{
            font-size: 22px;
            font-weight: 300;
            line-height: 27px;
        }
        .negocio-cards{
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            padding: 30px 0px;
        }
        .n-cards{
            display: flex;
            align-items: center;
            width: 394px;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 3%);
        }
        .n-cards img{
            width: 70px;
        }
        .n-cards p{
            font-size: 21px;
            padding-left: 20px;
        }
        .testimonials-section {
            max-width: 1300px;
            margin: 70px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .testimonials-header {
            text-align: left;
            margin-bottom: 30px;
            max-width: 580px;
        }

        .testimonials-header h4 {
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 30px;
            font-weight: 600;
            color: var(--primary);
        }

        .testimonials-header p {
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
        }

        .carousel-container {
            position: relative;
            max-width: 600px;
            margin: 0;
            overflow: hidden;
            padding-top: 50px;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 30px 25px;
            background: white;
            border-radius: 15px;
            text-align: center;
            position: relative;
            box-sizing: border-box;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #4361ee;
            margin: -70px auto 20px;
            position: relative;
            background: white;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            color: #4361ee;
            font-weight: bold;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: #4361ee;
        }

        .drag-hint {
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-top: 10px;
        }

        .video-container{
            max-width: 650px;
        }

        .video-produto-1{
            max-width: 650px;
        }
        

        /* Responsivo */
        @media (max-width: 768px) {
        .testimonial-card {
            padding: 30px 20px;
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            margin-top: -60px;
        }
        
        .testimonial-text {
            font-size: 15px;
        }
        .video-produto-1{
            width: 100%;
        }
        }

        @media (max-width: 480px) {
        .testimonial-card {
            padding: 30px 15px;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            margin-top: -50px;
        }
        
        .drag-hint {
            font-size: 13px;
        }
        }

        .how{
            background-color: var(--primary);
            padding: 100px 0px;
        }
        .how-area{
            display: flex;
            justify-content: space-between;
        }
        .how-text{
            width: 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .how-img
        {
            width: 50%;
        }
         .how-img img
        {
            width: 100%;
        }
        .how-text h4{
            font-size: 45px;
            line-height: 41px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #fff;
        }
        .how-text p{
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
            color: #fff;
        }

        .how-cards{
            display: flex;
            align-items: center;
            padding-top: 30px;
        }
        .how-cards img{
            width: 70px;
            margin-right: 20px;
        }

          /* Estilos do Footer Light */
    .site-footer.light-footer {
        padding-top: 90px;
        background-color: #ffffff;
        color: #333;
        border-top: 1px solid #eaeaea;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
    }
    
    .light-footer .footer-slogan {
        color: #666;
        max-width: 332px;
    }
    
    .light-footer .social-links a {
        color: #555;
        background-color: #f5f5f5;
        border: 1px solid #e0e0e0;
    }
    
    .light-footer .social-links a:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .light-footer .footer-title {
        color: #2c3e50;
    }
    
    .light-footer .footer-title::after {
        background-color: var(--primary);
    }
    
    .light-footer .footer-links a {
        color: #555;
        text-decoration: none;
    }
    
    .light-footer .footer-links a:hover {
        color: var(--primary);
        transition: .3s;
    }
    
    .light-footer .contact-item i {
        color: var(--primary);
    }
    
    .light-footer .contact-item p {
        color: #555;
        font-size: 14px;
    }
    
    .light-footer .footer-bottom {
        border-top: 1px solid #eaeaea;
    }
    
    .light-footer .copyright {
        color: #777;
    }
    
    .light-footer .payment-methods img {
        filter: grayscale(100%) brightness(70%);
    }
    
    .light-footer .payment-methods img:hover {
        filter: grayscale(0%) brightness(100%);
    }
    
    /* Mantendo a estrutura responsiva original */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 0px;
    }
    
    .footer-column {
        flex: 1;
        min-width: 250px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .footer-logo img {
        max-width: 200px;
        margin-bottom: 15px;
        margin-right: 15px;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .contact-info {
        margin-top: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        margin-right: 10px;
        margin-top: 3px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 20px 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .payment-methods {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    .cta-div{
        padding: 0;
    }

    .formulario{
        background-color: #fff;
        padding: 80px 0px;
    }

    .cont-flex{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .txt-formulario{
        text-align: center;
    }
    .txt-formulario h2{
        color: #0041c9;
        font-size: 40px;
        font-weight: 600;
    }
      .txt-formulario p{
        margin-bottom: 40px;
    }

    iframe{
        border: 2px solid #e0e0e0;
        border-radius: 10px;
    }

    .form-w{
        width: 800px;
        height: 500px;
    }

    .sec-vantagens{
        background-color: #fff;
        padding: 100px 0px;
    }

    
    .video{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        height: 320px;
    }

    .div-video{
        width: 50%;
        display: flex;
        justify-content: end;
    }

    .div-video2{
        width: 50%;
        display: flex;
        justify-content: start;
    }

    .div-video-text{
        width: 50%;
    }

    .div-video-text h4{
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 30px;
        font-weight: 600;
        color: var(--primary);
    }

    .div-video-text p{
        font-size: 20px;
        font-weight: 300;
        line-height: 32px;
    }

    .div-video-text b{
        font-weight: 600;
    }

    .rnk-componente-whatsapp a.rnk-wp-link {
            position: fixed;
            right: 15px;
            bottom: 15px;
            display: grid;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            justify-items: center;
            place-items: center;
            width: 70px;
            height: 70px;
            background-color: #25d366;
            background-size: 30px;
            border-radius: 40px;
            text-decoration: none;
            z-index: 15;
        }
  .rnk-componente-whatsapp a.rnk-wp-link i {
            font-size: 30px;
            color: #fff;
        }

    .logo-column{
        display: flex;
        align-items: center;
    }

    .links-column{
        max-width: 280px;
    }

    .sec-midia{
        background-image: url('../img/bg-midia.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 90px 0px 90px;
    }

         .sec-midia h4{
            font-size: 50px;
            line-height: 41px;
            margin-bottom: 25px;
            font-weight: 600;
            color: #fff;
        }

         .sec-midia p{
            font-size: 20px;
            font-weight: 300;
            line-height: 27px;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

    .selo-midia{
        max-width: 260px;
        background-color: #3993ff;
        padding: 5px 30px;
        border-radius: 4px;
        margin-bottom: 25px;
    }   

    .midia{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .a-midia{
        text-decoration: none;
    }
    .midia-text{
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .midia-img{
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .midia-a:hover{
            transform: scale(1.1);
            transition: transform 0.5s ease;
    }

    .midia-img img{
        width: 170px;
    }

    .news-img{
        width: 25px;
        margin-right: 10px;
    }

    .suporte{
        padding: 80px 0px;
        background-image: url('../img/bg-suporte.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .chat-suporte{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .iframe-suporte{
        width: 48%;
    }

    .text-suporte{
        width: 45%;
    }

    .faconfig{
        font-size: 15px;
        margin-right: 7px;
        color: var(--primary);
    }

    .text-suporte h1{
        font-size: 45px;
        color: var(--primary);
        line-height: normal;
        padding-bottom: 25px;
    }

    .text-suporte p{
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .text-suporte a{
        background-color: var(--primary);
        color: #fff;
        padding: 10px 50px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 20px;
    }

      .text-suporte a:hover{
        background-color: #00287e;
        transition: 0.5s;
    }

    .text-suporte b{
        color: var(--primary);
    }

    .iframe-suporte iframe{
        width: 100%;
        height: 100%;
        min-height: 550px;
    }
    

    @media (max-width: 1200px) {

        .video{
            flex-direction: column-reverse;
            height: 100%;
        }

        .div-video{
            width: 80%;
            height: 300px;
            display: flex;
            justify-content: center
        }

        .div-video2{
            width: 80%;
            height: 300px;
            display: flex;
            justify-content: center
        }

        .div-video-text h4{
            text-align: center;
        }
        
        .div-video-text p{
            text-align: center;
            margin-bottom: 40px;
        }
        
        .div-video-text{
            width: 100%;
        }
        
       .hero-content{
            flex-direction: column;
       }
        .testimonials-section {
            flex-direction: column;
        }
       .hero-title{
            text-align: center;
       }
       .hero-description{
            text-align: center;
       }
       .cta-div{
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .tabela-area{
            flex-direction: column-reverse;
        }
        .tabela-text{
            width: 90%;
        }
        .tabela-text h4{
            text-align: center;
        }
        .tabela-text p{
            text-align: center;
            margin-bottom: 40px;
        }
        .tabela-img{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .tabela-img img{
            width: 50%;
        }
        .testimonial-img img{
            width: 100%;
        }
        .plano-cards{
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .plano h4{
            text-align: center;
        }
        .plano p{
            text-align: center;
        }
        .p-cards p{
            text-align: left !important;
        }
        .n-cards img {
            width: 80px;
        }
        .negocio-area{
            width: 100%;
        }
        .negocio-flex{
            flex-direction: column-reverse;
        }
        .n-cards{
            width: 330px;
        }
        .negocio-cards{
            justify-content: space-around;
        }
        .negocio-text h4{
            text-align: center;
        }
        .negocio-text p{
            text-align: center;
        }
        .n-cards p{
            font-size: 20px;
            padding-left: 20px;
        }
        .p-cards p{
            font-size: 20px;
        }
        .n-cards img{
            width: 70px;
        }
        .how-area{
            flex-direction: column-reverse;
        }
        .how-text{
            width: 100%;
        }
        .text-testimonial{
            width: 100%;
        }
        .how-img{
            width: 100%;
            margin-top: 30px;
        }
        .how-img img {
            width: 80%;
        }
        .negocio-img{
            display: none;
        }
        .footer-column{
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: baseline;
        }
        .footer-logo img{
            width: 200px;
        }

        .midia{
            flex-direction: column;
        }
        .midia-text{
            width: 95%;
            margin-bottom: 40px;
        }
        .midia-img{
            width: 95%;
            gap: 20px;
        }
        .midia-img img {
            width: 135px;
        }
    }
    
    @media (max-width: 800px) {
        .div-video-text h4 {
            font-size: 23px;
            font-weight: 600;
            line-height: 30px;
        }
        .chat-suporte{
            flex-direction: column;
        }

        .text-suporte{
            width: 98%;
        }

        .text-suporte h1{
            font-size: 34px;
        }

        .iframe-suporte{
            width: 98%;
            margin-top: 40px;
        }

          .links-column{
            max-width: 100%;
        }

        .div-video-text p {
            width: 330px !important;
            font-size: 15px;
            line-height: 25px !important;
            margin-top: 20px !important;
            margin-bottom: 40px;
        }
        .div-video{
            width: 100%;
            height: 190px;
        }
        .div-video2{
            width: 100%;
            height: 190px;
            margin-bottom: 40px;
        }
        .footer-column {
            flex: 100%;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .testimonials-header{
            text-align: center;
        }

        .testimonials-header h4{
            font-size: 24px;
            line-height: initial;
        }
        .testimonials-header p{
            font-size: 16px;
            line-height: 22px;
        }
        .carousel-container{
            width: 100%;
        }
        
        .footer-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .social-links {
            justify-content: center;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-item {
            justify-content: center;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .payment-methods {
            justify-content: center;
            margin-top: 15px;
        }
        .hero-content {
            flex-direction: column-reverse;
        }
         .form-w{
            width: 100%;
            height: 600px;
        }
    }


        /* Responsividade */
        @media (max-width: 1024px) {
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-image {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 2rem;
                transition: var(--transition);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
            }

            .auth-buttons {
                flex-direction: column;
                width: 80%;
            }

            .mobile-menu-btn {
                display: block;
            }
            .hero-text {
                text-align: center;
                max-width: 100%;
            }

            .hero-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                font-size: 22px;
            }
            .hero-span-text{
                font-size: 24px;
            }

            .hero-image {
                width: 100%;
                min-height: 350px;
                order: -1;
            }
            .hero-text img{
                padding-top: 50px;
                width: 80%;
            }
        }

            @media (max-width: 700px) {
                .hero-image img{
                    width: 80%;
                }
                .hero-image{
                    display: flex;
                    align-items: flex-end;
                }
                .hero-span-text{
                    font-size: 20px;
                }
                .cta-btn {
                    padding: 1rem 3.5rem;
                    font-size: 22px;
                }
                .hero-content {
                    gap: 1rem;
                }
                .tabela-text h4 {
                    font-size: 24px;
                    line-height: initial;
                }
                .container {
                    padding: 0 0.5rem;
                }
                .tabela-text p {
                    font-size: 16px;
                    font-weight: 300;
                    line-height: 22px;
                }
                .tabela-img img {
                    width: 90%;
                }
                .tabela {
                    padding: 70px 0px;
                }
                .plano h4 {
                    font-size: 24px;
                    line-height: initial;
                    text-align: left;
                }
                .plano-cards{
                    justify-content: flex-start;
                }
                .plano{
                    padding: 70px 0px;
                }
                .p-cards img {
                    width: 80px;
                }
                .p-cards p {
                    font-size: 18px;
                }
                .negocio-text h4{
                    font-size: 24px;
                    line-height: initial;
                }
                .plano p{
                    font-size: 16px;
                    line-height: 22px;
                    text-align: left;
                }
                .negocio-text p{
                    font-size: 16px;
                    font-weight: 300;
                    line-height: 22px;
                }
                .n-cards p {
                    font-size: 17px;
                }
                .negocio-cards{
                    gap: 20px;
                }
                .text-testimonial h4{
                    font-size: 24px;
                    line-height: initial;
                }
                .text-testimonial{
                    padding-left: 0px;
                }
                .how-text h4{
                    font-size: 24px;
                    line-height: initial;
                }
                .how-text p{
                    font-size: 16px;
                }
                .how-img{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                .negocio{
                    padding: 70px 0px;
                }
                .how{
                    padding: 70px 0px;
                }
                .site-footer.light-footer{
                    padding-top: 50px;
                }
                .contact-item{
                    justify-content: center;
                    flex-direction: column;
                    align-items: center;
                }
                .contact-item i{
                    margin-right: 0px;
                    margin-top: 0px;
                    margin-bottom: 10px;
                }
                .text-testimonial p{
                    font-size: 16px;
                }
                
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .txt-formulario h2{
                font-size: 30px;
            }
                .cta-btn {
                    padding: 0.8rem 1rem;
                    font-size: 16px;
                }
            .hero-description{
                margin-top: 1rem;
                margin-bottom: 2rem;
            }
        }

    .xqtmq{
        display: none !important;
    }
    .hpAVjU{
        background-color: #0041c9 !important;
        border-radius: 6px !important;
        color: #fff !important;
        margin-bottom: calc(40px);
        padding: calc(13px) !important;
        width: 100%;
        grid-column: span 1;
    }
    .fAquOh{
        background-color: #00287e !important;
    }

    .h4-pol{
    font-size: 30px;
    text-align: left;
    letter-spacing: -1px;
    color: #0047ba;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 35px;
}

.h5-pol{
    letter-spacing: -1px;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    padding-bottom: 10px;
      margin-bottom: 20px;
}

.p-pol{
    font-size: 14px !important;
    text-align: left;
    color: #585858;
    padding-bottom: 30px;
}

.pol{
    padding: 65px 0px;
}

.a-pol{
    color: #fff;
    border: 1px solid #2196F3;
    padding: 10px 20px;
    background-color: #2196F3;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.a-pol:hover{
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    background-color: transparent;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: .4s;
    text-decoration: none;
}


.accordion{
    padding-bottom: 0px !important;
}

.accordion-box{
    padding: 0px 20px !important;
}
.container-pol{
    background-color: #0047ba;
}

.hidden{
    visibility: hidden;
    display: none;
}


.d-flex{
  display: flex;
}

.lgpd-image-div{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}

.lgpd-image{
  width: 90%;
}

.lgpd-text{
  width: 75%;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lgpd-text p{
  color: #4d4d4d;
}

.wrapper.oticas .nav__link, .wrapper.conveniadas .nav__link, .wrapper.clinicas .nav__link, .wrapper.padrao .nav__link {
  color: #fff;
}


.section-politicas{
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

.bg-politicas{
  background-image: url('../img/bg-politicas.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 60px;
  width: 100%;
}

.pointers-politicas{
  margin-left: 20px;
}

.h2-politicas{
  color: #ffffff;
  margin: 0 0 10px;
  font-size: 40px;
}

.h3-politicas{
  letter-spacing: -1px;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  padding-bottom: 60px;
}

.h4-politicas{
  letter-spacing: -1px;
  font-size: 27px;
  color: #0047ba;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 35px;
}

.h5-politicas {
  letter-spacing: -1px;
  font-size: 19px;
  color: #0047ba;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 35px;
}

.p-politicas{
  color: #868686;
  font-size: 15px;
  line-height: 22px;
  padding-bottom: 30px;
}

.accordion__body{
    margin-bottom: 20px;
    color: #868686;
}


  

@media (max-width: 1000px) {
    .d-flex{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .lgpd-text{
        text-align: center;
        width: 100%;
        margin-left: 0px;
    }
    .flex-d {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .wd50{
        width: 100%;
    }
    .h5-pol{
        font-size: 17px;
    }
    .h4-pol{
        font-size: 26px;
    }
    .h4-politicas{
        font-size: 24px;
    }
    .h2-politicas{
        font-size: 28px;
    }
  }