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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: #6B46C1;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-login {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* Hero Section */
        .hero {
            background-color: #f5f5f5;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #2d3748;
        }

        .hero h1 span {
            text-decoration: underline;
            text-decoration-color: #6B46C1;
            text-decoration-thickness: 3px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #4a5568;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .hero-subtitle strong {
            color: #2d3748;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #6B46C1;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #5a3aa8;
        }

        .btn-secondary {
            background-color: transparent;
            color: #6B46C1;
            padding: 14px 32px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }

        /* Section Headers */
        .section-label {
            color: #6B46C1;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-title {
            font-size: 32px;
            color: #2d3748;
            margin-bottom: 24px;
            text-align: center;
            font-weight: 700;
        }

          .number-title {
            font-size: 36px;
            color: white;
            margin-bottom: 24px;
            text-align: center;
            font-weight: 700;
        }

        .section-description {
            font-size: 18px;
            color: #4a5568;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .feature-card {
            text-align: center;
        }

        .feature-card h3 {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 16px;
        }

        .feature-card p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
        }

        /* Toggle Section */
        .toggle-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .toggle-buttons {
            display: flex;
            gap: 0;
            justify-content: center;
            margin-bottom: 60px;
        }

        .toggle-btn {
            padding: 14px 32px;
            border: 2px solid #6B46C1;
            background-color: white;
            color: #6B46C1;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .toggle-btn:first-child {
            border-radius: 8px 0 0 8px;
        }

        .toggle-btn:last-child {
            border-radius: 0 8px 8px 0;
        }

        .toggle-btn.active {
            background-color: #6B46C1;
            color: white;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #6B46C1 0%, #5a3aa8 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .stat-item h3 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .stat-item p {
            font-size: 20px;
            opacity: 0.9;
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }

        .content-section:nth-child(even) {
            background-color: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .content-text h2 {
            font-size: 32px;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .content-text p {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.8;
        }

        .content-image {
            border-radius: 16px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .pricing-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 700;
            color: #2d3748;
        }

        .discount-badge {
            background-color: #e9d8fd;
            color: #6B46C1;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
        }

        .price-info {
            margin-bottom: 32px;
        }

        .original-price {
            font-size: 14px;
            color: #718096;
            margin-bottom: 4px;
        }

        .current-price {
            font-size: 40px;
            font-weight: 700;
            color: #2d3748;
        }

        .current-price span {
            font-size: 20px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .feature-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: #2d3748;
        }

        .feature-list li.disabled {
            color: #a0aec0;
        }

        .check-icon {
            color: #6B46C1;
            font-weight: bold;
        }

        .cross-icon {
            color: #a0aec0;
        }

        .pricing-note {
            text-align: center;
            font-size: 14px;
            color: #4a5568;
            margin-top: 40px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: white;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 24px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            user-select: none;
        }

        /* Added accordion styles for expandable FAQ */
        .faq-arrow {
            font-size: 20px;
            transition: transform 0.3s ease;
            color: #6B46C1;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 16px;
        }

        .faq-answer p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
        }

        .faq-answer strong {
            color: #2d3748;
            font-weight: 600;
        }

        .faq-cta {
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: white;
            border-top: 1px solid #e2e8f0;
            padding: 40px 0;
        }

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

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 2px solid #2d3748;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d3748;
            text-decoration: none;
        }

        .copyright {
            font-size: 14px;
            color: #4a5568;
        }

        .copyright a {
            color: #2d3748;
            text-decoration: none;
            font-weight: 600;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            font-weight: 600;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Animation classes for scroll effects */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .logo-underline {
            position: relative;
            display: inline-block;
            color: #4B0082;
            font-weight: bold;
        }

         .logo-underline::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -12px; /* ajuste de acordo com o design */
            width: 100%;
            height: 22px; /* altura da imagem */
            background-image: url('/img/imagem_sublinhado.png');
            background-repeat: no-repeat;
            background-size: contain; /* cobre proporcionalmente */
            pointer-events: none;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
        }

        .features {
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.feature-card {
    max-width: 350px;
    text-align: center;
}

.section-label {
    text-align: center;
}

/* Alternar background das sections */
.content-section:nth-child(odd) {
  background-color: #F9FAFB;
}
.content-section:nth-child(even) {
  background-color: #F1E9FF;
}

/* Grid geral */
.content-section {
  padding: 100px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Texto */
.content-text .section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7A3EE6;
  margin-bottom: 12px;
}

.content-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1A1A1A;
  line-height: 1.2;
}

.content-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
}

/* Imagens responsivas e sem dobras horrorosas */
.content-image {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

/* Alternância no grid (imagem direita/esquerda) já OK no seu HTML */

/* Mobile first responsivo */
@media (max-width: 950px) {
  .content-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .content-image {
    order: -1;
    height: 300px;
  }
}

.content-section:nth-child(1) .content-image {
  background-image: url('/img/frota.png');
}

.content-section:nth-child(2) .content-image {
  background-image: url('/img/contratos.png');
}

.content-section:nth-child(3) .content-image {
  background-image: url('/img/abastecimento.png');
}

.content-section:nth-child(4) .content-image {
  background-image: url('/img/manutencao.png');
}

/* Garantir que as cards tenham estrutura sólida */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* botão sempre no pé do card */
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-align: left;
}

/* Estilização linda do botão */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background: #6A35E8; /* seu roxo padrão */
  color: #fff;
  padding: 16px 10px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  margin-top: auto; /* cola no fundo */
  text-decoration: none !important;
  transition: background .2s ease-in-out, transform .15s ease;
}

/* Hover animadinho que não irrita */
.btn-pricing:hover {
  background: #5529bd;
  transform: translateY(-2px);
}

/* Foco acessível */
.btn-pricing:focus {
  outline: 3px solid #9b7ff0;
}

/* Manter altura universal */
.pricing-grid {
  display: grid;
  gap: 30px;
  align-items: stretch;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: left;
}

/* Desktop - 3 colunas lado a lado */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        align-items: stretch;
    }
    
    .feature-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 2.5rem 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-card p {
        flex: 1;
        font-size: 1.05rem;
    }
}

/* Tablet - 2 colunas */
@media (min-width: 768px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 80%;
        justify-self: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .features {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }

    .text-init{
        font-size: 16px;
    }
}

/* ====== LARGURA E RESPIRO GLOBAL ====== */
/* 3 dedos ≈ 48–64px de respiro nas laterais em telas grandes */
:root{
  --edge: clamp(20px, 3vw, 56px);
}

.container{ max-width: 1760px; padding-inline: 70px; }
.hero h1{ font-size: 64px; }
.feature-card{ padding: 44px; }

/* em telas ultra-wide, dá mais fôlego para o conteúdo expandir */
@media (min-width: 1440px){
  .container{ max-width: min(1880px, 100%); }
}

/* ====== TIPOGRAFIA FLUIDA ====== */
html{
  /* base sobe levemente em telas grandes sem esmagar no mobile */
  font-size: clamp(16px, 0.9vw + 12px, 19px);
}

/* Hero mais imponente */
.hero{ padding: clamp(64px, 9vw, 120px) 0; }
.hero h1{
    font-size: clamp(32px, 2.1vw + 16px, 46px);
    line-height: 1.15;
}
.hero-subtitle{
    font-size: clamp(16px, 0.5vw + 13px, 19px);
}
.btn-primary, .btn-secondary, .btn-login{
  font-size: clamp(16px, 0.35vw + 14px, 18px);
  padding: clamp(12px, 0.7vw + 8px, 18px) clamp(22px, 1.2vw + 12px, 32px);
}

/* ====== FEATURES (os 3 cards) ====== */
.features{ padding: clamp(56px, 8vw, 96px) 0; }
.features-grid{
  /* garante cartões mais largos quando houver espaço */
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}
.feature-card{
  padding: clamp(20px, 2.2vw, 44px);
  border-radius: 14px;
}
.feature-card h3{
  font-size: clamp(22px, 1.2vw + 14px, 28px);
}
.feature-card p{
  font-size: clamp(16px, 0.45vw + 14px, 19px);
  line-height: 1.8;
}

/* ====== SESSÕES DE CONTEÚDO (imagem + texto) ====== */
.content-section{ padding: clamp(64px, 8vw, 120px) 0; }
.content-grid{
  /* blocos maiores: colunas mínimas mais largas */
  grid-template-columns: repeat(2, minmax(520px, 1fr));
  gap: clamp(32px, 4vw, 72px);
}
.content-text h2{
  font-size: clamp(28px, 2.2vw + 14px, 42px);
  line-height: 1.2;
}
.content-text p{
  font-size: clamp(17px, 0.6vw + 14px, 20px);
  line-height: 1.85;
}
.content-image{
  min-height: clamp(360px, 34vw, 520px);
  border-radius: 18px;
}

/* ====== NÚMEROS ====== */
.number-title{ font-size: clamp(28px, 2.4vw + 16px, 44px); }
.stats-grid{
  gap: clamp(28px, 4vw, 60px);
}
.stat-item h3{ font-size: clamp(36px, 3.4vw, 56px); }
.stat-item p{ font-size: clamp(16px, 0.6vw + 14px, 20px); }

/* ====== PREÇOS (cards maiores) ====== */
.pricing{ padding: clamp(64px, 8vw, 120px) 0; }
.pricing-grid{
  grid-template-columns: repeat(3, minmax(380px, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}
.pricing-card{
  padding: clamp(24px, 2.2vw, 44px);
}
.plan-name{ font-size: clamp(18px, 0.7vw + 14px, 22px); }
.current-price{ font-size: clamp(36px, 2.6vw + 14px, 48px); }
.feature-list li{ font-size: clamp(16px, 0.45vw + 14px, 18px); }

/* ====== FAQ ====== */
.faq-question{ font-size: clamp(18px, 0.9vw + 14px, 22px); }
.faq-answer p{ font-size: clamp(16px, 0.45vw + 14px, 18px); }

/* ====== HEADER ====== */
.logo{ font-size: clamp(18px, 0.8vw + 14px, 22px); }
.logo-icon{ width: clamp(44px, 3.8vw, 64px); height: clamp(44px, 3.8vw, 64px); }

/* ====== MOBILE (mantém tudo confortável) ====== */
@media (max-width: 1024px){
  .features-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .content-grid{ grid-template-columns: 1fr; }
}


.header-actions{
  display: flex; gap: 12px; align-items: center;
}

.btn-outline{
  background: transparent;
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  transition: .2s ease;
}
.btn-outline:hover{ background: rgba(255,255,255,.15); }

/* ===== Header mobile fix (apenas quando a tela é pequena) ===== */
@media (max-width: 768px){
  header { padding: 12px 0; }

  .header-content{
    gap: 12px;
  }

  .logo{
    gap: 8px;
    font-size: 14px !important;
  }

  .logo-icon{
    width: 45px;
    height: 45px;
  }

  /* agrupa os dois botões sem esmagar e sem quebrar linha */
  .header-actions{
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
  }

  /* botão compacto, sem pular linha dentro */
  header .btn-login{
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1;         /* tira aquela altura de “cartão de crédito” */
    white-space: nowrap;    /* não deixa “Acessar minha conta” quebrar em 3 linhas */
    border-radius: 10px;
  }
}

/* telas bem pequenas ainda: dá mais um step down para caber bonito */
@media (max-width: 420px){
  header .btn-login{
    padding: 7px 10px;
    font-size: 12.5px;
  }
}

    .img-content{
        width: 700px;
        height: auto;
    }

.pricing-toggle-wrapper {
    display: inline-flex;
    gap: 8px;
    margin: 30px auto 40px;
    padding: 6px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #D9D9D9;
}

.pricing-toggle-btn {
    padding: 12px 26px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #5C5F62;
    cursor: pointer;
    transition: 0.25s ease;
}

.pricing-toggle-btn.active {
    background: #6B4DF7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(107, 77, 247, 0.25);
}

.pricing-toggle-btn:hover {
    background: rgba(107, 77, 247, 0.08);
}

/* Container dos botões da hero */
.toggle-section .toggle-buttons {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    padding: 6px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #E2E2E8;
}

/* Botões "Tenho uma construtora / locadora" */
.toggle-btn-hero {
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #4A4F58;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
        transform 0.1s ease;
    white-space: nowrap;
}

/* Hover (quando não está ativo) */
.toggle-btn-hero:hover {
    background: rgba(107, 77, 247, 0.06);
}

/* Estado ativo */
.toggle-btn-hero.active {
    background: #6B4DF7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(107, 77, 247, 0.35);
    transform: translateY(-1px);
}
.toggle-section .container {
    text-align: center;
}


         /* ===== MERCADO FLEET ===== */
        .mercado-fleet {
            padding: 80px 0;
            background: #f3e8ff;
        }

        .mf-eyebrow {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-size: 13px;
            font-weight: 700;
            color: #6b4df7;
            margin-bottom: 40px;
        }

        .mf-layout {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }

        /* COLUNA ESQUERDA */
        .mf-left {
            flex: 3;
            min-width: 0;
        }

        .mf-carousel {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        #mf-viewport {
            flex: 1;
            overflow: hidden;
        }

        #mf-track {
            display: flex;
            gap: 24px;
        }

        /* CARD */
        .mf-card {
            flex: 0 0 calc((100% - 48px) / 3);
            max-width: calc((100% - 48px) / 3);
            min-width: 0;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .mf-card-image {
            height: 200px;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .mf-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mf-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .mf-title {
            font-size: 15px;
            font-weight: 700;
            color: #111827;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .mf-attr {
            font-size: 14px;
            color: #4b5563;
        }

        .mf-attr strong {
            font-weight: 600;
            color: #111827;
        }

        .mf-card-btn {
            background-color: #4B0082;
            border-radius: 30px;
            text-align: center;
            color: white;
            text-decoration: none;
            padding: 5px;
        }

        .mf-card-btn a,
        .btn-ver {
            display: block;
            width: 100%;
            padding: 14px 24px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            background-color: #6b4df7;
            color: #ffffff !important;
            text-decoration: none !important;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
        }

        .mf-card-btn a:hover,
        .btn-ver:hover {
            background-color: #5a3fe4;
            box-shadow: 0 8px 22px rgba(107, 77, 247, 0.35);
            transform: translateY(-2px);
            color: #ffffff !important;
            text-decoration: none !important;
        }

        .mf-card-btn a:visited,
        .btn-ver:visited {
            color: #ffffff !important;
        }

        /* Navegação */
        .mf-nav {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: none;
            background: #e9d5ff;
            color: #6b4df7;
            font-size: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }

        .mf-nav:hover {
            background: #6b4df7;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(107, 77, 247, 0.4);
        }

        /* COLUNA DIREITA */
        .mf-right {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 20px;
        }

        .mf-side-title {
            font-size: 32px;
            line-height: 1.2;
            font-weight: 700;
            font-style: italic;
            color: #111827;
            margin-bottom: 20px;
        }

        .mf-side-title span {
            color: #6b4df7;
        }

        .mf-side-text {
            font-size: 15px;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 20px;
        }

        .mf-side-text strong {
            color: #6b4df7;
        }

        .mf-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }

        .mf-benefits li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            font-size: 15px;
            color: #111827;
        }

        .mf-benefits li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 14px;
            color: #6b4df7;
        }

        .mf-main-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 999px;
            background: #6b4df7;
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            box-shadow: 0 16px 40px rgba(107, 77, 247, 0.4);
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
            align-self: flex-start;
        }

        .mf-main-cta:hover {
            background: #5a3fe4;
            box-shadow: 0 18px 44px rgba(107, 77, 247, 0.5);
            transform: translateY(-2px);
        }

        /* Responsivo */
        @media (max-width: 1200px) {
            .mf-card {
                flex: 0 0 calc((100% - 24px) / 2);
                max-width: calc((100% - 24px) / 2);
            }
        }

        @media (max-width: 960px) {
            .mf-layout {
                flex-direction: column;
            }

            .mf-right {
                padding-left: 0;
                margin-top: 40px;
            }

            .mf-side-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .mf-card {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .mf-nav {
                display: none;
            }

            #mf-track {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .mf-card {
                scroll-snap-align: start;
            }
        }

        /* ===== AJUSTE GLOBAL DE ESCALA (DESZOOM) ===== */
html {
    /* antes: clamp(16px, 0.9vw + 12px, 19px) */
    font-size: clamp(15px, 0.6vw + 11px, 17px);
}

/* Títulos de seção */
.section-title,
.content-text h2,
.mf-side-title,
.number-title {
    font-size: clamp(22px, 1.6vw + 14px, 32px);
}

.section-description,
.content-text p,
.feature-card p,
.faq-answer p,
.feature-list li,
.mf-side-text,
.mf-attr,
.hero-subtitle {
    font-size: clamp(14px, 0.4vw + 12px, 17px);
}


.current-price {
    /* antes chegava em 48px */
    font-size: clamp(28px, 1.4vw + 18px, 36px);
}

.feature-list li {
    font-size: clamp(14px, 0.35vw + 12px, 16px);
}

/* ============= CONTENT SECTIONS RESPONSIVAS (1–4) ============= */

.content-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.content-section .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.content-section .img-content {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content-section .content-text h2 {
  font-size: clamp(22px, 1.4vw + 16px, 30px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.content-section .content-text p {
  font-size: clamp(14px, 0.4vw + 13px, 17px);
  line-height: 1.7;
}

/* --- CTAs das seções (1–4) --- */

.content-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}

.content-section .content-text > .btn-primary,
.content-section .content-text > .btn-secondary {
  margin-top: 24px;
  margin-right: 12px;
}

.content-section .btn-primary,
.content-section .btn-secondary {
  min-width: 0;
}

/* ============= MOBILE / TABLET ============= */
@media (max-width: 900px) {
  /* Stack imagem + texto em 1 coluna */
  .content-section .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-section .content-text {
    text-align: left;
  }

  .content-section .section-label {
    text-align: left;
  }

  .content-section .img-content {
    max-width: 100%;
  }

  /* CTAs empilhados e full width */
  .content-section .cta-buttons {
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .content-section .cta-buttons .btn-primary,
  .content-section .cta-buttons .btn-secondary,
  .content-section .content-text > .btn-primary,
  .content-section .content-text > .btn-secondary {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .content-section .content-grid {
    gap: 20px;
  }

  .content-section .content-text h2 {
    font-size: 20px;
  }

  .content-section .content-text p {
    font-size: 14px;
  }
}
/* ===== AJUSTE CONTAINER NO MOBILE  ===== */
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
}

/* ===== TOGGLE "TENHO UMA CONSTRUTORA / LOCADORA" RESPONSIVO ===== */
@media (max-width: 768px) {
  .toggle-section {
    padding: 48px 0;
  }

  .toggle-section .section-title {
    font-size: 20px;
    line-height: 1.4;
    max-width: 26rem;
    margin: 0 auto 24px;
  }

  .toggle-section .toggle-buttons {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    padding: 4px;
    border-radius: 999px;
    justify-content: space-between;
    gap: 4px;
  }

  .toggle-btn-hero {
    flex: 1 1 0;
    font-size: 14px;
    padding: 10px 8px;
    white-space: normal;     
    text-align: center;
  }
}

@media (max-width: 400px) {
  .toggle-section .toggle-buttons {
    max-width: 100%;
  }

  .toggle-btn-hero {
    font-size: 13px;
    padding: 8px 6px;
  }
}


