.elementor-5434 .elementor-element.elementor-element-34edbe8{--display:flex;--min-height:1440px;--justify-content:flex-start;}.elementor-5434 .elementor-element.elementor-element-538cb16{width:var( --container-widget-width, 156.415% );max-width:156.415%;--container-widget-width:156.415%;--container-widget-flex-grow:0;top:0px;}.elementor-5434 .elementor-element.elementor-element-538cb16.elementor-element{--flex-grow:0;--flex-shrink:0;}body:not(.rtl) .elementor-5434 .elementor-element.elementor-element-538cb16{left:0px;}body.rtl .elementor-5434 .elementor-element.elementor-element-538cb16{right:0px;}/* Start custom CSS for html, class: .elementor-element-538cb16 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a6dcc;
            --primary-dark: #0d56a3;
            --secondary: #dd2c00;
            --light: #f8f9fa;
            --dark: #333;
            --gray: #6c757d;
            --success: #28a745;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: #f5f7fa;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .google{
            width: 20%;
            height: auto;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            width: 200px;
            height: 100px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: url("https://isencar.netlify.app/logo.png");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .logo h1 {
            color: var(--primary);
            font-size: 1.8rem;
        }

        .logo span {
            color: var(--secondary);
        }

        .contact-header {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .phone {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
        }

        .phone:hover {
            color: var(--primary-dark);
        }

        .cta-button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.589), rgba(2, 16, 31, 0.747)), url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            height: 70vh;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .highlight {
            color: #ffdd00;
            font-weight: bold;
        }

        .discount-badge {
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .carousel-container .section-title{
            width: 30%;
            line-height: 1.1;
        }

        /* Services Section */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.2rem;
        }

        section {
            padding: 70px 0;
        }

        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card i {
            color: var(--secondary);
        }

        /* Testimonials */
        .testimonials {
            background-color: #f0f7ff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .testimonial-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--secondary);
        }
        .testimonial-card video{
            width: 100%;
            height: auto;
            border-radius: 20px;
        } 
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .client-details h4 {
            color: var(--primary);
        }

        .client-details p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .stat-label {
            color: var(--gray);
        }

        /* Eligibility */
        .eligibility {
            background-color: white;
        }

        .eligibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .eligibility-card {
            padding: 25px;
            border-radius: 10px;
            background-color: #f0f7ff;
            border: 1px solid #d1e7ff;
        }

        .eligibility-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .disease-list {
            list-style-type: none;
        }

        .disease-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #d1e7ff;
            display: flex;
            align-items: center;
        }

        .disease-list li:before {
            content: "✓";
            color: var(--success);
            font-weight: bold;
            margin-right: 10px;
        }

        /* Process */
        .process {
            background-color: #f0f7ff;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            counter-reset: step-counter;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background-color: white;
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            counter-increment: step-counter;
        }

        .process-step:before {
            content: counter(step-counter);
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .process-step h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* FAQ */
        .faq {
            background-color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 18px 20px;
            background-color: #f8f9fa;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Bonus */
        .bonus {
            background: linear-gradient(to right, rgb(235, 141, 0), rgb(211, 127, 2));
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 50px 20px;
            border-radius: 15px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }
        .bonus::before{
            position: absolute;
            content: "";
            background: url("https://isencar.netlify.app/leao.webp");
            background-size: contain;
            background-repeat: no-repeat;
            height: 120%;
            width: 100%;
            left: 0px;
            bottom: -30px;
        }
        .bonus::after{
            position: absolute;
            content: "";
            background: url("https://isencar.netlify.app/receita.png");
            background-size: contain;
            background-repeat: no-repeat;
            height: 70px;
            width: 100%;
            margin: 20px 20px;
            left: -1px;
            bottom: 0;
        }

        .bonus h3 {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        .bonus p{
            width: 70%;
            font-size: 25px;
        }
        /* CTA Section */
        .cta-section {
            text-align: center;
            background-color: white;
            padding: 60px 0;
        }

        .cta-section h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .whatsapp-b{
            background-color: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .whatsapp-b:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background-color: #222;
            color: #b9b9b9;
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .credencial{
            width: 100%;
            display: flex;
            color: white;
            align-items: center;
            padding-bottom: 30px;
            justify-content: space-between;
        }
        .credencial img{
            height: 150px;
            width: auto;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

        .disclaimer {
            background-color: #ffefd6;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #856404;
            border-left: 4px solid #ffc107;
        }
        .carousel-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 100px 0;
        }
        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            padding: 20px;
            display: flex;
            justify-content: center;
        }
        
        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card img{
            width: 100%;
            height: auto;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .card-header {
            background: #2c3e50;
            color: white;
            padding: 15px 20px;
            text-align: center;
            position: relative;
        }
        
        .card-header h2 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .card-header .model-year {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .original-price {
            color: #e74c3c;
            text-decoration: line-through;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .discount-price {
            color: #27ae60;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .price-label {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .tax-info {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 12px;
            font-size: 0.9rem;
            color: #2c3e50;
            margin: 20px 0;
            border-left: 4px solid #3498db;
        }
        
        .savings {
            background: #e8f6f3;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            margin: 20px 0;
            border: 2px dashed #27ae60;
        }
        
        .savings h3 {
            color: #27ae60;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .savings p {
            color: #2c3e50;
            font-weight: 600;
        }
        
        .btn-interest {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 16px;
            width: 100%;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
            letter-spacing: 1px;
            display: flex;
            text-decoration: none;
            align-items: center;
            justify-content: center;
        }
        
        .btn-interest:hover {
            background: #c0392b;
        }
        
 
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(56, 56, 56, 0.616);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .indicator.active {
            background: rgb(0, 0, 0);
            transform: scale(1.2);
        }
        
        .footer-note {
            text-align: center;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
            font-size: 0.9rem;
        }
        .cont img:nth-of-type(1){
            width: 10vw; height: auto;
        }
        .cont img:nth-of-type(2){
            width: 10vw; height: auto;
        }
                /* Botão flutuante do WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
        }
        
        .whatsapp-button i {
            font-size: 36px;
            color: white;
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 80px;
            background-color: #075E54;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent transparent #075E54;
        }
        
        .whatsapp-button:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }
                @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        @media (max-width: 480px) {
            .card {
                width: 100%;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .carousel-slide {
                padding: 10px;
            }
        }
        /* Responsive */
        @media (max-width: 768px) {
            footer p{
                font-size: 0.7rem;
            }
            .card-header h2 {
                font-size: 1.5rem;
            }
            .discount-price {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2rem;
            }
            .cta-button{
                font-size: 0.95rem;
            }
            .bonus h3{
                font-size: 2rem;
            }
            .bonus::after{
                width: 35px;
                bottom: -40px;
            }
            .bonus::before{
                opacity: 0.6;
                height: 50%;
                width: 100%;
                left: 0px;
                bottom: -40px;
            }
            .footer-note{
                width: 90%;
            }
            .bonus p{
                position: relative;
                text-shadow: 0px 0px 40px black;
                font-size: 100%;
            }
            .carousel-container .section-title{
                width: 100%;
            }
            .carousel{
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .cont h2{
                font-size: 30px;
            }
            .cont img:nth-child(1){
                width: 40vw;
            }
            .cont img:nth-of-type(2){
                width: 50%;
            }
            .header-container {
                padding: 10px 0px;
                flex-direction: column;
            }
            .logo{
                width: 100px;
                height: 40px;
            }
            .contact-header {
                align-items: center;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .process-step {
                min-width: 100%;
            }
             .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-button {
                width: 60px;
                height: 60px;
            }
            
            .whatsapp-button i {
                font-size: 30px;
            }
            
            .whatsapp-tooltip {
                display: none;
            }
        }/* End custom CSS */