* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

/* ================= HERO LOCAÇÃO ================= */
.rental-hero {
    padding: 180px 0 100px 0;
    background: #020c1b;
    position: relative;
    overflow: hidden;
}

.grid-floor {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    opacity: 0.5;
}

.hero-split-rental {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 50px; align-items: center; position: relative; z-index: 2;
}

.profit-tag {
    color: #00ff88; border: 1px solid #00ff88;
    padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase;
    background: rgba(0, 255, 136, 0.1);
}

.hero-benefits-list { list-style: none; margin: 30px 0; }
.hero-benefits-list li {
    font-size: 1.1rem; color: #ccd6f6; margin-bottom: 15px; display: flex; align-items: center; gap: 15px;
}
.hero-benefits-list .icon { font-size: 1.5rem; }

/* Animação Ciclo (Visual) */
.hero-cycle-visual {
    height: 400px; display: flex; justify-content: center; align-items: center;
}
.cycle-ring {
    width: 300px; height: 300px;
    border: 1px dashed rgba(242, 101, 34, 0.35);
    border-radius: 50%; position: relative;
    animation: rotate-ring 20s linear infinite;
}
.orb {
    position: absolute; width: 60px; height: 60px;
    background: #112240; border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 20px rgba(242, 101, 34, 0.35);
}
.orb-label { font-size: 0.7rem; color: var(--color-accent); font-weight: bold; }

.o1 { top: -30px; left: 50%; transform: translateX(-50%); } /* Topo */
.o2 { bottom: 20px; left: -10px; } /* Esquerda Baixo */
.o3 { bottom: 20px; right: -10px; } /* Direita Baixo */

.center-logo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: #fff; width: 50px; height: 50px;
}

@keyframes rotate-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* Contra-rotação para o texto ficar legível */
.orb { animation: counter-rotate 20s linear infinite; }
@keyframes counter-rotate { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }


/* ================= COMPARATIVO ================= */
.comparison-rental { padding: 80px 0; background: var(--color-bg-main); }

.vs-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px;
}

.vs-card {
    padding: 40px; border-radius: 12px; position: relative;
}
.vs-card h3 { color: #fff; margin-bottom: 20px; font-size: 1.5rem; text-align: center; }

.vs-card.bad {
    background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.2);
}
.vs-card.good {
    background: rgba(0, 255, 136, 0.05); border: 1px solid rgba(0, 255, 136, 0.3);
    transform: scale(1.05); box-shadow: 0 10px 40px -10px rgba(0, 255, 136, 0.1);
}

.badge-rec {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #00ff88; color: #000; font-weight: 800; padding: 5px 20px;
    border-radius: 20px; font-size: 0.8rem; text-transform: uppercase;
}

.vs-card ul { list-style: none; }
.vs-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }
.neg { opacity: 0.7; }
.pos { color: #fff; font-weight: 500; }


/* ================= SIMULADOR ================= */
.simulator-section { padding: 80px 0; background: var(--color-bg-secondary); }

.sim-box {
    background: #112240; border: 1px solid rgba(242, 101, 34, 0.35);
    border-radius: 16px; padding: 40px; max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
}

.sim-controls { display: flex; flex-direction: column; gap: 30px; }

.control-group label { display: block; color: var(--color-accent); margin-bottom: 10px; font-size: 0.9rem; }
.range-val { display: block; color: #fff; font-size: 1.2rem; font-weight: bold; margin-top: 5px; }

/* Range Slider Custom */
input[type=range] {
    width: 100%; -webkit-appearance: none; background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; height: 20px; width: 20px; border-radius: 50%;
    background: var(--color-accent); cursor: pointer; margin-top: -8px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 4px; cursor: pointer; background: rgba(255,255,255,0.2); border-radius: 2px;
}

.toggle-group { display: flex; gap: 10px; }
.toggle-btn {
    flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: #888; padding: 10px; border-radius: 6px; cursor: pointer; transition: 0.3s;
}
.toggle-btn.active, .toggle-btn:hover {
    background: var(--color-accent); color: #000; font-weight: bold; border-color: var(--color-accent);
}

select {
    width: 100%; background: #0a192f; color: #fff; padding: 10px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
}

.sim-result {
    background: #0a192f; padding: 30px; border-radius: 12px;
    display: flex; flex-direction: column; justify-content: space-between; text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.rec-label { font-size: 0.8rem; color: #888; text-transform: uppercase; }
.sim-result h4 { color: #fff; font-size: 1.5rem; margin: 10px 0; }
#planFeatures { list-style: none; color: #ccc; margin-bottom: 20px; font-size: 0.9rem; }
.btn-pulse-wide { width: 100%; animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
    100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
}
.disclaimer { font-size: 0.7rem; color: #555; margin-top: 10px; }


/* ================= SEGMENTOS ================= */
.segments-section { padding: 80px 0; background: var(--color-bg-main); text-align: center; }
.segments-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 40px;
}
.seg-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    padding: 30px; border-radius: 10px; transition: 0.3s;
}
.seg-card:hover { transform: translateY(-5px); border-color: var(--color-accent); }
.seg-icon { font-size: 2.5rem; margin-bottom: 15px; }
.seg-card h4 { color: #fff; margin-bottom: 10px; }
.seg-card p { font-size: 0.9rem; color: #888; }

/* ================= FAQ ACCORDION ================= */
.rental-faq { padding: 80px 0; background: #0b1016; }
.narrow { max-width: 800px; }

.accordion { margin-top: 40px; }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.acc-header {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 0; color: #fff; font-size: 1.1rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between;
}
.acc-header::after { content: '+'; color: var(--color-accent); font-size: 1.5rem; }
.acc-header.active::after { content: '-'; }

.acc-body {
    max-height: 0; overflow: hidden; transition: 0.3s ease-out;
    color: #8892b0; line-height: 1.6;
}
.acc-body p { padding-bottom: 20px; }

/* ============================================================
   RESPONSIVIDADE: LOCAÇÃO (SIMULADOR E COMPARATIVOS)
   ============================================================ */

/* MENU HAMBURGUER (Obrigatório) */
.mobile-menu-trigger { display: none; }

@media (max-width: 1024px) {

    /* --- CABEÇALHO --- */
    .header-cta { display: none !important; }
    
    .mobile-menu-trigger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px; height: 22px;
        cursor: pointer; z-index: 99999;
        margin-left: auto;
    }

    .mobile-menu-trigger .bar {
        width: 100%; height: 2px; 
        background: var(--color-accent) !important;
        transition: 0.3s;
    }
    
    .mobile-menu-trigger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-menu-trigger.active .bar:nth-child(2) { opacity: 0; }
    .mobile-menu-trigger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* GAVETA DO MENU */
    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: 85%; height: 100vh;
        background: #020610;
        border-left: 2px solid var(--color-accent);
        padding: 100px 20px;
        transition: 0.3s ease;
        display: flex !important; flex-direction: column;
        z-index: 9999;
    }
    .main-nav.menu-open { right: 0; }
    .nav-list { flex-direction: column; width: 100%; gap: 0; }
    .nav-link { display: block; padding: 15px 0; border-bottom: 1px solid #333; width: 100%; font-size: 1.1rem; }
    .dropdown-menu { display: none; background: #000; padding-left: 20px; }
    .dropdown-item.active-mobile .dropdown-menu { display: block; }


    /* --- HERO SECTION --- */
    .rental-hero {
        padding: 130px 0 60px 0 !important;
        height: auto !important;
        text-align: center !important;
    }

    .hero-split-rental {
        grid-template-columns: 1fr !important; /* Coluna única */
        gap: 40px !important;
    }

    .profit-tag{font-size: 0.5rem;}

    .hero-text-rental h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-text-rental p {font-size: 0.7rem};

    /* Lista de benefícios centralizada */
    .hero-benefits-list li {
        font-size: 1.2rem !important; /* Reduz a fonte */
        line-height: 1.4 !important;    /* Ajusta o espaçamento entre linhas */
        justify-content:left !important; /* Mantém alinhado */
        margin-bottom: 10px !important; /* Reduz um pouco a margem se precisar */
    }
    
    /* Opcional: Reduzir também o ícone para acompanhar */
    .hero-benefits-list .icon {
        font-size: 1.1rem !important; 
    }

    .hero-benefits-list span {width: 10px;}

    /* Animação Ciclo (Reduzida) */
    .hero-cycle-visual {
        height: 250px !important;
    }
    .cycle-ring {
        width: 220px !important;
        height: 220px !important;
    }
    .orb { width: 50px !important; height: 50px !important; }
    .orb-label { font-size: 0.65rem !important; }

    /*SEGUNDO TÍTULO*/
    .comparison-rental .section-header h2 {
        font-size: 1.5rem !important; 
        line-height: 1.6 !important;
        margin-bottom: 10px !important;
    }

    .comparison-rental .section-header p {
        font-size: 0.9rem !important; /* Tamanho do subtítulo */
        line-height: 1.4 !important;
    }

    /* --- COMPARATIVO (VS) --- */
    .vs-grid {
        grid-template-columns: 1fr !important; /* Cards empilhados */
        gap: 30px !important;
    }

    .vs-card {
        padding: 30px 20px !important;
    }
    
    .vs-card.good {
        transform: none !important; /* Remove zoom no mobile */
        order: -1; /* Joga o card "Bom" para cima */
        border: 2px solid #00ff88 !important;
    }


    /* --- SIMULADOR (Ajuste Crítico) --- */
    .sim-box {
        grid-template-columns: 1fr !important; /* Empilha Controles e Resultado */
        gap: 30px !important;
        padding: 25px !important;
    }

    /* Botões de Duração (Empilhados ou Wrap) */
    .toggle-group {
        flex-wrap: wrap !important;
    }
    .toggle-btn {
        flex: 1 1 45% !important; /* Ocupa metade da linha */
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    /* Slider de Quantidade (Mais gordinho pro dedo) */
    input[type=range]::-webkit-slider-thumb {
        width: 28px !important; height: 28px !important; margin-top: -12px !important;
    }

    /* Resultado */
    .sim-result {
        padding: 20px !important;
    }
    .sim-result h4 { font-size: 1.3rem !important; }


    /* --- SEGMENTOS --- */
    .segments-grid {
        grid-template-columns: 1fr 1fr !important; /* 2 Colunas */
        gap: 15px !important;
    }
    /* Em telas muito pequenas, 1 coluna */
    @media (max-width: 400px) {
        .segments-grid { grid-template-columns: 1fr !important; }
    }

    .seg-card { padding: 20px !important; }
    .seg-icon { font-size: 2rem !important; }
}

/* --- AJUSTE FINO 320px --- */
@media (max-width: 360px) {
    .hero-text-rental h1 { font-size: 1.8rem !important; }
    .vs-card h3 { font-size: 1.3rem !important; }
}

.hero-benefits-list li {
    font-size: 0.8rem !important; /* Reduz a fonte */
    line-height: 1.4 !important;    /* Ajusta o espaçamento entre linhas */
    justify-content:left !important; /* Mantém alinhado */
    margin-bottom: 10px !important; /* Reduz um pouco a margem se precisar */
}

/* Opcional: Reduzir também o ícone para acompanhar */
.hero-benefits-list .icon {
    font-size: 1.1rem !important; 
}