/* ============================================
   HOME.CSS - Estilos específicos da Home
   CNM - ControleNaMão
   ============================================
   
   NOTA: Estilos globais (reset, variáveis, tipografia base,
   utilitários e componentes reutilizáveis) devem estar no style.css
   
   Este arquivo contém apenas estilos específicos das seções da home.
   Organizado por dobras (seções) da página.
============================================ */


/* Hero Section - ControleNaMão */

.hero-cnm-section * {
    box-sizing: border-box;
}

.hero-cnm-section {
    width: 100%;
    min-height: 100vh;
    padding: 0px 0 60px;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ===== EFEITO DE ILUMINAÇÃO LARANJA EXPANDIDO PARA TODA A HERO ===== */
.hero-cnm-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -5%;
    width: 1400px;
    height: 1400px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 157, 1, 0.22) 0%,
        rgba(255, 157, 1, 0.16) 20%,
        rgba(255, 157, 1, 0.11) 35%,
        rgba(255, 157, 1, 0.07) 50%,
        rgba(255, 157, 1, 0.04) 65%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(120px);
    animation: glowPulse 8s ease-in-out infinite;
}

/* Segundo layer de iluminação mais expansivo cobrindo centro e direita */
.hero-cnm-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 179, 71, 0.18) 0%,
        rgba(255, 179, 71, 0.12) 25%,
        rgba(255, 157, 1, 0.08) 45%,
        rgba(255, 157, 1, 0.04) 60%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(140px);
    animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-cnm-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Layer adicional de iluminação no lado direito cobrindo formulário */
.hero-cnm-container::before {
    content: '';
    position: absolute;
    top: 0%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle at center,
        rgba(255, 157, 1, 0.16) 0%,
        rgba(255, 157, 1, 0.10) 30%,
        rgba(255, 179, 71, 0.06) 50%,
        rgba(255, 157, 1, 0.03) 65%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(110px);
    animation: glowPulseRight 9s ease-in-out infinite;
}

@keyframes glowPulseRight {
    0%, 100% {
        opacity: 0.75;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.08) translateY(-15px);
    }
}

.hero-cnm-split {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.hero-cnm-left {
    display: flex;
    flex-direction: column;
}

.hero-cnm-h1 {
    font-size: clamp(2rem, 3.5vw, 52px);
    font-family: "Syne", sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: #0c272f;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-cnm-description {
    font-size: clamp(1.05rem, 1.25vw, 19px);
    line-height: 1.65;
    color: #475569;
    margin: 0 0 45px 0;
    text-align: center;
    max-width: 900px;
}

.hero-cnm-description strong {
    color: #0c272f;
    font-weight: 600;
}

.hero-cnm-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-cnm-system-image {
    width: 100%;
    max-width: 780px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
    animation: systemFadeIn 1.2s ease-out forwards;
}

.hero-cnm-float {
    position: absolute;
    height: auto;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
    opacity: 0;
    animation: cardExpand 0.6s ease-out forwards;
}

.hero-cnm-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    flex-wrap: wrap;
    position: relative;
    z-index: 50;
    pointer-events: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Syne", sans-serif;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.hero-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.hero-btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.hero-btn-whatsapp:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 2px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 157, 1, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.4);
    color: #ffffff;
}

.hero-btn-primary:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-cnm-float-1 {
    width: 200px;
    top: 8%;
    left: 3%;
    animation-delay: 1.2s;
}

.hero-cnm-float-2 {
    width: 200px;
    top: 38%;
    left: 1%;
    animation-delay: 1.35s;
}

.hero-cnm-float-3 {
    width: 190px;
    top: 4%;
    left: 39%;
    animation-delay: 1.5s;
}

.hero-cnm-float-4 {
    width: 210px;
    top: 8%;
    right: 3%;
    animation-delay: 1.65s;
}

.hero-cnm-float-5 {
    width: 195px;
    top: 42%;
    right: 1%;
    animation-delay: 1.8s;
}

.hero-cnm-float-6 {
    width: 220px;
    bottom: 18%;
    right: 5%;
    animation-delay: 1.95s;
}

.hero-cnm-right {
    position: sticky;
    top: 100px;
}

.hero-cnm-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-form-title {
    font-size: 26px;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    color: #0c272f;
    margin: 0 0 8px 0;
    text-align: center;
    line-height: 1.3;
}

.hero-form-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 28px 0;
    text-align: center;
    line-height: 1.5;
}

.hero-form-subtitle time {
    font-weight: 600;
    color: #334155;
}

.hero-cnm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.hero-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.hero-form-input:focus {
    outline: none;
    border-color: #ff9d01;
    box-shadow: 0 0 0 3px rgba(255, 157, 1, 0.1);
}

.hero-form-input:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
}

.hero-form-input::placeholder {
    color: #94a3b8;
}

.hero-form-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Syne", sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(255, 157, 1, 0.3);
    position: relative;
}

.hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.4);
}

.hero-form-submit:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

.hero-form-submit:active {
    transform: translateY(0);
}

.hero-form-privacy {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.privacy-link {
    color: #ff9d01;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #e68a00;
}

.privacy-link:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
    border-radius: 2px;
}

.hero-form-input.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    font-weight: 500;
}

.error-message:not(:empty) {
    display: block;
}

.spinner-border {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.15em;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.hero-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

@keyframes systemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardExpand {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .hero-cnm-split {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
    
    .hero-cnm-content {
        max-width: 800px;
        height: 600px;
    }
    
    .hero-cnm-system-image {
        max-width: 680px;
    }
    
    .hero-cnm-float-1,
    .hero-cnm-float-2,
    .hero-cnm-float-4 {
        width: 180px;
    }
    
    .hero-cnm-float-3 {
        width: 170px;
    }
    
    .hero-cnm-float-5 {
        width: 175px;
    }
    
    .hero-cnm-float-6 {
        width: 200px;
    }
    
    .hero-cnm-form-card {
        padding: 32px 24px;
    }
    
    .hero-cnm-buttons {
        margin-top: -80px;
    }
    
    /* Ajusta iluminação para telas menores */
    .hero-cnm-section::before {
        width: 1200px;
        height: 1200px;
        left: -8%;
    }
    
    .hero-cnm-section::after {
        width: 1000px;
        height: 1000px;
        left: 18%;
    }
    
    .hero-cnm-container::before {
        width: 800px;
        height: 800px;
        right: -12%;
    }
}

@media (max-width: 992px) {
    .hero-cnm-section {
        padding: 40px 0 50px;
    }
    
    .hero-cnm-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cnm-left {
        order: 1;
    }
    
    .hero-cnm-right {
        order: 2;
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-cnm-h1 {
        font-size: clamp(1.85rem, 5vw, 44px);
    }
    
    .hero-cnm-description {
        margin: 0 auto 25px;
    }
    
    .hero-cnm-content {
        max-width: 600px;
        height: 450px;
    }
    
    .hero-cnm-system-image {
        max-width: 500px;
    }
    
    .hero-cnm-float-1,
    .hero-cnm-float-2,
    .hero-cnm-float-4 {
        width: 140px;
    }
    
    .hero-cnm-float-3 {
        width: 130px;
    }
    
    .hero-cnm-float-5,
    .hero-cnm-float-6 {
        width: 150px;
    }
    
    .hero-cnm-buttons {
        margin-top: -40px;
        gap: 12px;
    }
    
    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Centraliza iluminação em tablets */
    .hero-cnm-section::before {
        width: 1000px;
        height: 1000px;
        left: -15%;
        top: 6%;
    }
    
    .hero-cnm-section::after {
        width: 850px;
        height: 850px;
        left: 10%;
    }
    
    .hero-cnm-container::before {
        width: 700px;
        height: 700px;
        right: -20%;
        top: 5%;
    }
}

@media (max-width: 768px) {
    .hero-cnm-section {
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    .hero-cnm-container {
        padding: 0 16px;
    }
    
    .hero-cnm-h1 {
        font-size: clamp(1.65rem, 6vw, 32px);
        margin-bottom: 14px;
    }
    
    .hero-cnm-description {
        font-size: 15px;
        margin-bottom: 240px;
        padding: 0 10px;
    }
    
    .hero-cnm-content {
        max-width: 100%;
        height: 380px;
        margin-bottom: 0px;
    }
    
    .hero-cnm-system-image {
        max-width: 340px;
        border-radius: 6px;
    }
    
    .hero-cnm-float-1,
    .hero-cnm-float-2,
    .hero-cnm-float-3,
    .hero-cnm-float-4,
    .hero-cnm-float-5,
    .hero-cnm-float-6 {
        width: 110px;
    }
    
    .hero-cnm-float-1 {
        top: 2%;
        left: 1%;
    }
    
    .hero-cnm-float-2 {
        top: 30%;
        left: 0%;
    }
    
    .hero-cnm-float-3 {
        top: 0%;
        left: 28%;
    }
    
    .hero-cnm-float-4 {
        top: 2%;
        right: 1%;
    }
    
    .hero-cnm-float-5 {
        top: 38%;
        right: -2%;
    }
    
    .hero-cnm-float-6 {
        bottom: 28%;
        right: 2%;
    }
    
    .hero-cnm-form-card {
        padding: 28px 20px;
    }
    
    .hero-form-title {
        font-size: 22px;
    }
    
    .hero-cnm-buttons {
        margin-top: -30px;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Ajusta iluminação mobile - cobertura total */
    .hero-cnm-section::before {
        width: 800px;
        height: 800px;
        top: 5%;
        left: -30%;
    }
    
    .hero-cnm-section::after {
        width: 650px;
        height: 650px;
        top: 15%;
        left: -5%;
    }
    
    .hero-cnm-container::before {
        width: 550px;
        height: 550px;
        right: -35%;
        top: 8%;
    }
}

@media (max-width: 480px) {
    .hero-cnm-section {
        padding: 15px 0 30px;
    }
    
    .hero-cnm-h1 {
        font-size: clamp(1.5rem, 7vw, 28px);
        margin-bottom: 10px;
    }
    
    .hero-cnm-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-cnm-content {
        height: 320px;
    }
    
    .hero-cnm-system-image {
        max-width: 280px;
    }
    
    .hero-cnm-float-1,
    .hero-cnm-float-2,
    .hero-cnm-float-3,
    .hero-cnm-float-4,
    .hero-cnm-float-5,
    .hero-cnm-float-6 {
        width: 95px;
    }
    
    .hero-cnm-float-3 {
        left: 30%;
    }
    
    .hero-form-title {
        font-size: 20px;
    }
    
    .hero-form-submit {
        font-size: 15px;
        padding: 14px 18px;
    }
    
    .hero-btn {
        padding: 13px 18px;
        font-size: 14px;
    }
    
    /* Iluminação mobile pequeno - cobertura completa */
    .hero-cnm-section::before {
        width: 700px;
        height: 700px;
        left: -35%;
    }
    
    .hero-cnm-section::after {
        width: 550px;
        height: 550px;
        left: -10%;
    }
    
    .hero-cnm-container::before {
        width: 480px;
        height: 480px;
        right: -40%;
    }
}

@media (prefers-contrast: high) {
    .hero-cnm-h1,
    .hero-form-title {
        color: #000000;
    }
    
    .hero-cnm-description {
        color: #1a1a1a;
    }
    
    .hero-form-input {
        border-width: 3px;
    }
    
    /* Remove iluminação em modo alto contraste */
    .hero-cnm-section::before,
    .hero-cnm-section::after,
    .hero-cnm-container::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cnm-system-image,
    .hero-cnm-float,
    .hero-btn,
    .hero-form-submit {
        animation: none !important;
        transition: none !important;
    }
    
    .hero-cnm-system-image,
    .hero-cnm-float {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Remove animação de pulse da iluminação */
    .hero-cnm-section::before,
    .hero-cnm-section::after,
    .hero-cnm-container::before {
        animation: none !important;
    }
}

*:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
}


/* ============================================
   DOBRA 2: SEÇÃO PREÇOS
   ============================================ */

/* Seção Preços */

.cnm-pricing {
    background: #ffffff;
    padding: 40px 0 80px 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.cnm-pricing * {
    box-sizing: border-box;
}

.cnm-pricing__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.cnm-pricing__header {
    margin-bottom: 50px;
}

.cnm-pricing__title {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0c272f;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.cnm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cnm-pricing__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e5e5e5;
    min-width: 0;
}

.cnm-pricing__card--featured {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    border: 2px solid #ff9d01;
    box-shadow: 0 8px 32px rgba(255,157,1,0.35);
}

.cnm-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cnm-pricing__card-header {
    margin-bottom: 0;
}

.cnm-pricing__name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c272f;
    margin: 0 0 10px 0;
}

.cnm-pricing__card--featured .cnm-pricing__name {
    color: #ffffff;
}

.cnm-pricing__users {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,157,1,0.12);
    border: 1px solid rgba(255,157,1,0.25);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #ff9d01;
    width: fit-content;
}

.cnm-pricing__card--featured .cnm-pricing__users {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
}

.cnm-pricing__users svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cnm-pricing__price-box {
    margin: 16px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cnm-pricing__card--featured .cnm-pricing__price-box {
    border-bottom-color: rgba(255,255,255,0.2);
}

.cnm-pricing__price {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ff9d01;
    line-height: 1;
    display: inline;
}

.cnm-pricing__card--featured .cnm-pricing__price {
    color: #ffffff;
}

.cnm-pricing__period {
    font-size: 13px;
    color: #8b959a;
    margin-left: 2px;
}

.cnm-pricing__card--featured .cnm-pricing__period {
    color: rgba(255,255,255,0.85);
}

.cnm-pricing__desc {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0 0 14px 0;
    min-height: 40px;
}

.cnm-pricing__card--featured .cnm-pricing__desc {
    color: rgba(255,255,255,0.9);
}

.cnm-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.cnm-pricing__features li {
    padding: 6px 0;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cnm-pricing__features li::before {
    content: "✓";
    color: #ff9d01;
    font-weight: 700;
    font-size: 11px;
}

.cnm-pricing__card--featured .cnm-pricing__features li {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.1);
}

.cnm-pricing__card--featured .cnm-pricing__features li::before {
    color: #ffffff;
}

.cnm-pricing__actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
}

.cnm-pricing__card--featured .cnm-pricing__actions {
    background: transparent;
}

.cnm-pricing__btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cnm-pricing__btn--primary {
    background: #ff9d01;
    color: #ffffff;
}

.cnm-pricing__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,157,1,0.4);
    color: #ffffff;
    text-decoration: none;
}

.cnm-pricing__btn--primary:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

.cnm-pricing__card--featured .cnm-pricing__btn--primary {
    background: #ffffff;
    color: #e68a00;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cnm-pricing__card--featured .cnm-pricing__btn--primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #d67a00;
    border-color: rgba(255, 255, 255, 0.5);
}

.cnm-pricing__card--featured .cnm-pricing__btn--primary:focus-visible {
    outline-color: #ffffff;
}

.cnm-pricing__btn--secondary {
    background: transparent;
    color: #6b7280;
    font-size: 12px;
    padding: 6px;
}

.cnm-pricing__btn--secondary:hover {
    color: #0c272f;
    text-decoration: none;
}

.cnm-pricing__btn--secondary:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
}

.cnm-pricing__card--featured .cnm-pricing__btn--secondary {
    color: rgba(255,255,255,0.75);
}

.cnm-pricing__card--featured .cnm-pricing__btn--secondary:hover {
    color: #ffffff;
}

.cnm-pricing__card--featured .cnm-pricing__btn--secondary:focus-visible {
    outline-color: #ffffff;
}

.cnm-pricing__compare {
    text-align: center;
    margin-top: 40px;
}

.cnm-pricing__compare-btn {
    display: inline-block;
    background: #ff9d01;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cnm-pricing__compare-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,157,1,0.4);
    color: #ffffff;
    text-decoration: none;
}

.cnm-pricing__compare-btn:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

@media (max-width: 1200px) {
    .cnm-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cnm-pricing__card {
        padding: 28px 24px;
    }
    
    .cnm-pricing__price {
        font-size: 36px;
    }
}

@media (max-width: 650px) {
    .cnm-pricing {
        padding: 50px 0;
        margin: 50px 0;
    }
    
    .cnm-pricing__header {
        margin-bottom: 32px;
    }
    
    .cnm-pricing__title {
        font-size: 28px;
    }
    
    .cnm-pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cnm-pricing__price {
        font-size: 38px;
    }
    
    .cnm-pricing__compare {
        margin-top: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cnm-pricing__btn,
    .cnm-pricing__compare-btn {
        transition: none !important;
    }
}

/* ----------------- MÓDULOS ------------------*/

.modulos-section {
    padding: 80px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.modulos-section .container,
.modulos-section > div,
.modulos-section .row {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff9d01;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 36px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 18px;
    color: #334155;
    margin: 0;
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 1.75rem;
    max-width: 1280px;
    margin: 0 auto;
}

.modulo-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.modulo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modulo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.16);
    border-color: #ff9d01;
}

.modulo-link:hover {
    text-decoration: none;
    color: inherit;
}

.modulo-card.featured {
    border: 2px solid #ff9d01;
    background: linear-gradient(to bottom, rgba(255, 157, 1, 0.02), #ffffff);
}

.modulo-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.08) 0%, rgba(255, 157, 1, 0.02) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modulo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge.new {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
}

.badge.popular {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
}

.modulo-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.modulo-card p {
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.features {
    list-style: none;
    margin-top: auto;
    padding: 0;
    margin-bottom: 0;
}

.features li {
    padding: 0.5rem 0;
    color: #334155;
    font-size: 14px;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9d01;
    font-weight: 700;
    font-size: 16px;
}

.modulos-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-ver-todos {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 157, 1, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Syne', sans-serif;
}

.btn-ver-todos:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-ver-todos:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

@media (max-width: 1199px) {
    .modulos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 767px) {
    .modulos-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .modulos-grid {
        grid-template-columns: 1fr;
    }
    
    .modulos-footer {
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .modulos-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .modulo-card {
        padding: 1.5rem;
    }
    
    .modulo-image {
        height: 150px;
    }
    
    .btn-ver-todos {
        padding: 0.875rem 2rem;
        font-size: 16px;
    }
    
    .modulos-footer {
        margin-top: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modulo-card {
        transition: none !important;
    }
    
    .btn-ver-todos {
        transition: none !important;
    }
}


/* ============================================
   DOBRA 4: SEÇÃO DIFERENCIAIS
   ============================================ */

/* Seção Diferenciais */

.diferenciais-section {
    padding: 80px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.diferenciais-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.diferenciais-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.diferenciais-section .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff9d01;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

.diferenciais-section .section-tag::before,
.diferenciais-section .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff9d01 100%);
}

.diferenciais-section .section-tag::before {
    left: -35px;
}

.diferenciais-section .section-tag::after {
    right: -35px;
    background: linear-gradient(90deg, #ff9d01 0%, transparent 100%);
}

.diferenciais-section .section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 42px);
    font-weight: 700;
    color: #0c272f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.diferenciais-section .section-header p {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.diferencial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
    min-height: 320px;
}

.diferencial-card:nth-child(1) { animation-delay: 0.1s; }
.diferencial-card:nth-child(2) { animation-delay: 0.2s; }
.diferencial-card:nth-child(3) { animation-delay: 0.3s; }
.diferencial-card:nth-child(4) { animation-delay: 0.4s; }
.diferencial-card:nth-child(5) { animation-delay: 0.5s; }
.diferencial-card:nth-child(6) { animation-delay: 0.6s; }
.diferencial-card:nth-child(7) { animation-delay: 0.7s; }
.diferencial-card:nth-child(8) { animation-delay: 0.8s; }

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9d01 0%, #ffb347 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: #ff9d01;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%);
}

.diferencial-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 157, 1, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.diferencial-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff9d01, #ffb347);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 157, 1, 0.4);
}

.diferencial-card:hover .diferencial-icon::after {
    opacity: 0.6;
}

.diferencial-icon .material-symbols-outlined {
    font-size: 44px;
    color: #ffffff;
    font-weight: 400;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-card:hover .diferencial-icon .material-symbols-outlined {
    transform: scale(1.1);
}

.diferencial-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0c272f;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.diferencial-card:hover h3 {
    color: #ff9d01;
}

.diferencial-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .diferenciais-section {
        padding: 80px 0;
    }
    
    .diferenciais-section .section-header {
        margin-bottom: 3.5rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .diferencial-card {
        padding: 2rem;
    }
    
    .diferencial-icon {
        width: 75px;
        height: 75px;
    }
    
    .diferencial-icon .material-symbols-outlined {
        font-size: 36px;
    }
    
    .diferencial-card h3 {
        font-size: 20px;
    }
    
    .diferencial-card p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .diferenciais-section {
        padding: 60px 0;
    }
    
    .diferenciais-section .section-header {
        margin-bottom: 3rem;
    }
    
    .diferenciais-section .section-tag::before,
    .diferenciais-section .section-tag::after {
        display: none;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .diferencial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .diferencial-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .diferencial-icon .material-symbols-outlined {
        font-size: 30px;
    }
    
    .diferencial-card h3 {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }
    
    .diferencial-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .diferenciais-section {
        padding: 50px 0;
    }
    
    .diferenciais-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .diferencial-card {
        padding: 1.5rem;
    }
    
    .diferencial-icon {
        width: 70px;
        height: 70px;
    }
    
    .diferencial-icon .material-symbols-outlined {
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .diferenciais-section .section-header,
    .diferencial-card {
        animation: none !important;
    }
    
    .diferencial-card,
    .diferencial-icon,
    .diferencial-icon .material-symbols-outlined,
    .diferencial-card::before {
        transition: none !important;
    }
}


/* ============================================
   DOBRA 5: SEÇÃO CTA WHATSAPP
   ============================================ */

/* Seção CTA WhatsApp */

.whatsapp-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.whatsapp-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.whatsapp-cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.whatsapp-cta-text {
    padding-right: 20px;
}

.whatsapp-cta-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff9d01;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.whatsapp-cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 38px);
    font-weight: 700;
    color: #0c272f;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.whatsapp-cta-description {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.whatsapp-cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
}

.whatsapp-cta-benefits svg {
    width: 24px;
    height: 24px;
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-cta-action {
    position: relative;
}

.whatsapp-cta-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-icon-large svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.whatsapp-cta-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0c272f;
    margin-bottom: 0.5rem;
}

.whatsapp-cta-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 1.75rem;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    border: none;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-cta-btn:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 2px;
}

.whatsapp-cta-btn svg {
    width: 22px;
    height: 22px;
}

.whatsapp-cta-guarantee {
    display: block;
    margin-top: 1.25rem;
    font-size: 14px;
    color: #64748b;
}

.whatsapp-cta-guarantee a {
    color: #ff9d01;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-cta-guarantee a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .whatsapp-cta-section {
        padding: 60px 0;
    }
    
    .whatsapp-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-cta-text {
        padding-right: 0;
        text-align: center;
    }
    
    .whatsapp-cta-tag {
        display: block;
    }
    
    .whatsapp-cta-benefits {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .whatsapp-cta-action {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .whatsapp-cta-section {
        padding: 50px 0;
    }
    
    .whatsapp-cta-section .container {
        padding: 0 20px;
    }
    
    .whatsapp-cta-title {
        font-size: clamp(1.5rem, 6vw, 28px);
    }
    
    .whatsapp-cta-description {
        font-size: 16px;
    }
    
    .whatsapp-cta-card {
        padding: 32px 24px;
    }
    
    .whatsapp-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-icon-large svg {
        width: 35px;
        height: 35px;
    }
    
    .whatsapp-cta-card h3 {
        font-size: 22px;
    }
    
    .whatsapp-cta-btn {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .whatsapp-cta-benefits {
        gap: 0.875rem;
    }
    
    .whatsapp-cta-benefits li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-cta-section {
        padding: 40px 0;
    }
    
    .whatsapp-cta-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-cta-card {
        padding: 28px 20px;
    }
    
    .whatsapp-cta-btn {
        font-size: 15px;
        padding: 14px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-icon-large {
        animation: none !important;
    }
    
    .whatsapp-cta-card,
    .whatsapp-cta-btn {
        transition: none !important;
    }
}


/* ============================================
   DOBRA 6: SEÇÃO DEPOIMENTOS - CARROSSEL
   ============================================ */

/* Seção Depoimentos */

.depoimentos-section {
    padding: 80px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.depoimentos-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.depoimentos-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.depoimentos-section .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 42px);
    font-weight: 700;
    color: #0c272f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.depoimentos-section .section-subtitle {
    font-size: 18px;
    color: #475569;
    margin: 0;
}

/* ===== CARROSSEL WRAPPER ===== */

.depoimentos-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ===== CONTAINER DO CARROSSEL ===== */

.depoimentos-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 20px; /* Padding para centralizar no mobile */
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ===== CARDS DE DEPOIMENTO ===== */

.depoimento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6;
    flex-shrink: 0;
    width: calc((100% - 4rem) / 3); /* 3 cards visíveis no desktop */
    margin-right: 2rem; /* Gap entre cards */
}

.depoimento-card:last-child {
    margin-right: 0; /* Remove margin do último card */
}

.depoimento-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.depo-stars {
    color: #ff9d01;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.depo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.depo-text p {
    font-style: italic;
    margin: 0;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: transparent;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-family: 'Days One', sans-serif;
    font-size: 0.95rem;
    color: #3a434d;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* ===== BOTÕES DE NAVEGAÇÃO ===== */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-nav:hover {
    background: #ff9d01;
    border-color: #ff9d01;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 3px;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* ===== INDICADORES (DOTS) - APENAS MOBILE ===== */

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #ff9d01;
    width: 28px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: #ff9d01;
    opacity: 0.7;
}

.carousel-dot:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets (2 cards visíveis) */
@media (max-width: 1200px) {
    .depoimento-card {
        width: calc((100% - 2rem) / 2);
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
}

@media (min-width: 769px) {
    .depoimentos-carousel {
        padding: 0; /* Remove padding no desktop */
    }
}

@media (max-width: 992px) {
    .depoimentos-section {
        padding: 60px 0;
    }
    
    .depoimentos-section .section-header {
        margin-bottom: 3rem;
    }
    
    .depoimento-card {
        padding: 2rem;
        width: calc((100% - 1.5rem) / 2);
        margin-right: 1.5rem;
    }
    
    .depoimento-card:last-child {
        margin-right: 0;
    }
}

/* Mobile (1 card visível com autoplay) */
@media (max-width: 768px) {
    .depoimentos-section {
        padding: 50px 0;
    }
    
    .depoimentos-section .container {
        padding: 0 20px;
    }
    
    .depoimentos-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .depoimentos-carousel-wrapper {
        gap: 0;
    }
    
    .depoimentos-carousel {
        padding: 0; /* Remove padding no mobile */
    }
    
    .depoimentos-track {
        padding: 0 20px; /* Padding no track para centralizar */
    }
    
    .depoimento-card {
        width: calc(100% - 40px); /* Considera o padding */
        padding: 1.75rem;
        margin-right: 1.5rem;
    }
    
    .depoimento-card:last-child {
        margin-right: 0;
    }
    
    .depo-text {
        font-size: 0.95rem;
    }
    
    /* Esconde setas e mostra dots no mobile */
    .carousel-nav {
        display: none;
    }
    
    .carousel-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    .depoimentos-section {
        padding: 40px 0;
    }
    
    .depoimentos-track {
        padding: 0 10px; /* Padding menor em telas muito pequenas */
    }
    
    .depoimento-card {
        width: calc(100% - 20px);
        padding: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .depoimento-card:last-child {
        margin-right: 0;
    }
    
    .depo-stars {
        font-size: 1rem;
    }
    
    .author-img {
        width: 56px;
        height: 56px;
    }
    
    .author-info strong {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}

/* ===== ACESSIBILIDADE ===== */

@media (prefers-reduced-motion: reduce) {
    .depoimento-card,
    .carousel-nav,
    .carousel-dot,
    .depoimentos-track {
        transition: none !important;
    }
}

/* Suporte a teclado */
.depoimento-card:focus-within {
    outline: 2px solid #ff9d01;
    outline-offset: 4px;
}


/* Seção Blog - CORRIGIDO */

.blog-section {
    padding: 80px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff9d01;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-section .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 42px);
    font-weight: 700;
    color: #0c272f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-section .section-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-grid .item:nth-child(1),
.blog-grid .item:nth-child(2),
.blog-grid .item:nth-child(3) {
    grid-column: span 2;
}

.blog-grid .item:nth-child(4),
.blog-grid .item:nth-child(5) {
    grid-column: span 3;
}

.blog-grid .item {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.blog-grid .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff9d01;
}

.blog-grid .item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* CORREÇÃO: Imagem do post */
.blog-grid .bg-materia {
    width: 100%;
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Previne que a imagem encolha */
}

.blog-grid .bg-materia::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* CORREÇÃO: Container do conteúdo */
.blog-grid .item .botao-tirar-azul {
    padding: 0; /* Remove padding do container pai */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0; /* Permite flex shrink correto */
}

/* CORREÇÃO: Info de publicação (categoria + data) */
.blog-grid .info-publicacao {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0; /* Remove margin */
    padding: 1.25rem 1.5rem 1rem 1.5rem; /* Padding controlado aqui */
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0; /* Não encolhe */
}

.blog-grid .categoria {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.blog-grid .data {
    font-size: 13px;
    color: #64748b !important;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

/* CORREÇÃO: Título do post */
.blog-grid h3 {
    font-family: 'Syne', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #0c272f !important;
    line-height: 1.4;
    margin: 0; /* Remove margin */
    padding: 0 1.5rem; /* Padding lateral */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; /* Ocupa espaço disponível */
    min-height: 80px; /* Altura mínima para consistência */
}

.blog-grid .item:hover h3 {
    color: #ff9d01 !important;
}

/* CORREÇÃO: Container do botão */
.blog-grid .text-start {
    margin-top: auto; /* Empurra para o bottom */
    padding: 1rem 1.5rem 1.5rem 1.5rem; /* Padding controlado */
    flex-shrink: 0; /* Não encolhe */
}

.blog-grid .btn-primary {
    background: #ff9d01;
    border: 2px solid #ff9d01;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin: 0; /* Remove margin */
}

.blog-grid .btn-primary:hover {
    background: #ffffff;
    color: #ff9d01;
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 157, 1, 0.3);
}

.btn-blog-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 157, 1, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-blog-all:focus-visible {
    outline: 3px solid #ff9d01;
    outline-offset: 2px;
}

/* Responsividade */

@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid .item:nth-child(1),
    .blog-grid .item:nth-child(2),
    .blog-grid .item:nth-child(3),
    .blog-grid .item:nth-child(4),
    .blog-grid .item:nth-child(5) {
        grid-column: span 1;
    }
    
    .blog-grid .bg-materia {
        height: 200px;
    }

    .blog-grid h3 {
        font-size: 18px;
        min-height: 75px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section .section-header {
        margin-bottom: 3rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-grid .item:nth-child(1),
    .blog-grid .item:nth-child(2),
    .blog-grid .item:nth-child(3),
    .blog-grid .item:nth-child(4),
    .blog-grid .item:nth-child(5) {
        grid-column: span 1;
    }
    
    .blog-grid .bg-materia {
        height: 220px;
    }
    
    .blog-grid .info-publicacao {
        padding: 1rem 1.25rem 0.875rem 1.25rem;
        gap: 10px;
    }

    .blog-grid .categoria {
        padding: 4px 12px;
        font-size: 10px;
    }

    .blog-grid .data {
        font-size: 12px;
    }
    
    .blog-grid h3 {
        font-size: 17px;
        -webkit-line-clamp: 2;
        min-height: 60px;
        padding: 0 1.25rem;
    }
    
    .blog-grid .text-start {
        padding: 0.875rem 1.25rem 1.25rem 1.25rem;
    }

    .blog-grid .btn-primary {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    .btn-blog-all {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-grid .bg-materia {
        height: 180px;
    }

    .blog-grid .info-publicacao {
        padding: 0.875rem 1rem 0.75rem 1rem;
    }
    
    .blog-grid h3 {
        font-size: 16px;
        min-height: 56px;
        padding: 0 1rem;
    }

    .blog-grid .text-start {
        padding: 0.75rem 1rem 1rem 1rem;
    }
    
    .btn-blog-all {
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-grid .item,
    .blog-grid .btn-primary,
    .btn-blog-all {
        transition: none !important;
    }
}


/* ============================================
   DOBRA 8: CAROUSEL DE INTEGRAÇÕES
   ============================================ */

/* Seção de Integrações */

.integracoes-section {
    background: #fafafa;
    padding: 60px 0;
    width: 100%;
}

.integracoes-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.integracoes-header {
    text-align: center;
    margin-bottom: 40px;
}

.integracoes-titulo {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-family: "Syne", sans-serif;
    font-weight: 700;
    color: #0c272f;
    margin: 0;
    letter-spacing: -0.5px;
}

.integracoes-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.integracoes-carousel::before,
.integracoes-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.integracoes-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fafafa, transparent);
}

.integracoes-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fafafa, transparent);
}

.integracoes-track {
    display: flex;
    gap: 80px;
    animation: scroll-continuo 40s linear infinite;
    width: fit-content;
}

.integracoes-track:hover {
    animation-play-state: paused;
}

.integracao-item {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 15px;
    transition: all 0.3s ease;
}

.integracao-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.integracao-item img {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: filter 0.3s ease;
}

.integracao-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-continuo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .integracoes-section {
        padding: 50px 0;
    }
    
    .integracoes-header {
        margin-bottom: 35px;
    }
    
    .integracoes-titulo {
        font-size: 2rem;
    }
    
    .integracoes-track {
        gap: 70px;
    }
    
    .integracao-item {
        width: 110px;
        height: 85px;
        padding: 12px;
    }
    
    .integracao-item img {
        max-width: 90px;
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .integracoes-section {
        padding: 40px 0;
    }
    
    .integracoes-header {
        margin-bottom: 30px;
    }
    
    .integracoes-titulo {
        font-size: 1.75rem;
    }
    
    .integracoes-carousel {
        padding: 15px 0;
    }
    
    .integracoes-carousel::before,
    .integracoes-carousel::after {
        width: 60px;
    }
    
    .integracoes-track {
        gap: 60px;
    }
    
    .integracao-item {
        width: 100px;
        height: 80px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .integracao-item img {
        max-width: 80px;
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .integracoes-track {
        gap: 40px;
        animation-duration: 30s;
    }
    
    .integracao-item {
        width: 80px;
        height: 80px;
    }
    
    .integracao-item img {
        max-width: 70px;
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .integracoes-section {
        padding: 30px 0;
    }
    
    .integracoes-header {
        margin-bottom: 25px;
    }
    
    .integracoes-titulo {
        font-size: 1.5rem;
    }
    
    .integracoes-track {
        gap: 50px;
    }
    
    .integracao-item {
        width: 90px;
        height: 70px;
        padding: 10px;
    }
    
    .integracao-item img {
        max-width: 70px;
        max-height: 45px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .integracoes-track {
        animation: none !important;
    }
    
    .integracao-item {
        transition: none !important;
    }
    
    .integracao-item img {
        transition: none !important;
    }
}


/* ============================================
   DOBRA 9: SEÇÃO CONTRATE / CTA FINAL
   ============================================ */

.contrate {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
}

.contrate h2 {
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: clamp(1.75rem, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
}


/* ============================================
   BANNERS CTA (TESTE GRÁTIS E WHATSAPP URGÊNCIA)
   ============================================ */

.teste-gratis-banner,
.whatsapp-urgencia-banner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 60px 0;
}

/* --- Responsividade Banners --- */

@media (max-width: 767px) {
    .teste-gratis-banner,
    .whatsapp-urgencia-banner {
        padding: 40px 0;
    }
    
    .btn-teste-gratis,
    .btn-whatsapp-urgencia {
        padding: 14px 30px !important;
        font-size: 16px !important;
        width: 100%;
        justify-content: center;
    }
    
    .lista-beneficios-urgencia {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* ========================================
   SEÇÃO DE FAQs - CSS COMPLETO
   Cor principal: #ff9d01 (Laranja CNM)
   ======================================== */

/* Seção FAQ */

.container__faq {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.container__faq .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 56px;
}

.container__faq-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.container__faq-subtitulo {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
    border-color: #ff9d01;
    box-shadow: 0 4px 12px rgba(255, 157, 1, 0.12);
}

.faq-item.active {
    border-color: #ff9d01;
    box-shadow: 0 4px 12px rgba(255, 157, 1, 0.1);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #fffbf5;
}

.faq-question:focus {
    outline: none;
    background: #fff8f0;
}

.faq-question:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
}

.faq-question[aria-expanded="true"] {
    background: #fffbf5;
    border-bottom: 1px solid #ffe8cc;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-question-text {
    color: #ff9d01;
}

.faq-question[aria-expanded="true"] .faq-question-text {
    color: #ff9d01;
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: #ff9d01;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8f0;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: #ff9d01;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 8px 28px 28px 28px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.faq-answer p strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-answer a {
    color: #ff9d01;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.faq-answer a:hover {
    color: #e68900;
    border-bottom-color: #e68900;
}

.faq-answer a:focus-visible {
    outline: 2px solid #ff9d01;
    outline-offset: 2px;
    border-radius: 2px;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb133 100%);
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 157, 1, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.faq-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.faq-cta-button {
    display: inline-block;
    background: #ffffff;
    color: #ff9d01;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.faq-cta-button:hover {
    background: #fff8f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #e68900;
    text-decoration: none;
}

.faq-cta-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.faq-cta-secondary {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 16px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container__faq {
        padding: 60px 16px;
    }

    .faq-header {
        margin-bottom: 44px;
    }

    .container__faq-titulo {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .container__faq-subtitulo {
        font-size: 1rem;
    }

    .faq-accordion {
        gap: 12px;
        margin-bottom: 48px;
    }

    .faq-question {
        padding: 20px 20px;
        gap: 16px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 6px 20px 20px 20px;
        font-size: 0.9375rem;
    }

    .faq-cta {
        padding: 36px 24px;
        border-radius: 12px;
    }

    .faq-cta-text {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .faq-cta-button {
        font-size: 1rem;
        padding: 14px 32px;
    }

    .faq-cta-secondary {
        font-size: 0.8125rem;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .container__faq {
        padding: 50px 16px;
    }

    .container__faq-titulo {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-question-text {
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 4px 16px 18px 16px;
        font-size: 0.875rem;
    }

    .faq-cta {
        padding: 32px 20px;
    }

    .faq-cta-text {
        font-size: 1.125rem;
    }

    .faq-cta-button {
        padding: 12px 28px;
        font-size: 0.9375rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-icon,
    .faq-answer,
    .faq-cta-button {
        transition: none !important;
    }

    .faq-cta::before {
        animation: none !important;
    }
}

@media print {
    .container__faq {
        background: #ffffff;
        padding: 20px;
    }

    .faq-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .faq-answer {
        max-height: none !important;
    }

    .faq-icon {
        display: none;
    }

    .faq-cta {
        display: none;
    }
}

/* ============================================
   AJUSTES FINAIS DE ESPAÇAMENTO
   ============================================ */

/* Planos */
.planos-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* --- Responsividade Planos --- */

@media (max-width: 1199px) {
    .planos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .plano-card.destaque {
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .planos-section {
        padding: 60px 0;
        margin: 60px 0;
    }
    
    .planos-section h2 {
        margin-bottom: 40px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .plano-card {
        padding: 30px 25px !important;
        min-height: auto !important;
    }
    
    .plano-card.destaque {
        padding: 30px 25px !important;
        transform: none !important;
    }
    
    .plano-nome {
        font-size: 22px;
    }
    
    .plano-preco {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .plano-nome {
        font-size: 20px;
    }
    
    .plano-preco {
        font-size: 34px;
    }
    
    .plano-card {
        padding: 25px 20px;
    }
}

/* ------------- AVISO DE COOKIES ------------- */

#cnm-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  height: 167px;
  flex-shrink: 0;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px 45px;
  display: flex;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* TÍTULO */
#cnm-cookie-banner h3 {
  width: 1050px;
  height: 17px;
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 10px auto;
}

/* CONTAINER DO CONTEÚDO */
.cnm-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

/* LEFT SIDE */
.cnm-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* TEXTO */
#cnm-cookie-banner p {
  width: 719px;
  height: 54px;
  color: rgba(0, 0, 0, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
}

#cnm-cookie-banner p a {
  color: #316CF4;
  text-decoration: none;
}

#cnm-cookie-banner p a:hover {
  text-decoration: underline;
}

/* CHECKBOX LIST */
.cnm-cookie-options {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 719px;
}

.cnm-check {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: fit-content;
}

/* Label Necessários */
.cnm-check.necessary {
  color: rgba(0, 0, 0, 0.40);
}

/* Demais labels */
.cnm-check:not(.necessary) {
  color: rgba(0, 0, 0, 0.56);
}

/* Checkbox personalizado - MÉTODO SIMPLIFICADO */
.cnm-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid #EABE6D;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.cnm-check input[type="checkbox"]:checked {
  background: #EABE6D;
  border-color: #EABE6D;
}

/* Check simples usando border */
.cnm-check input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Checkbox Necessários (disabled) */
.cnm-check.necessary input[type="checkbox"]:disabled {
  cursor: not-allowed;
  border-color: rgba(224, 153, 19, 0.30);
  background: rgba(224, 153, 19, 0.30);
  opacity: 1;
}

.cnm-check.necessary input[type="checkbox"]:disabled::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* BUTTONS */
.cnm-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.cnm-buttons-top {
  display: flex;
  gap: 14px;
}

.cnm-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.cnm-btn:hover {
  opacity: 0.9;
}

/* Recusar tudo */
.cnm-btn.reject-all {
  width: 138px;
  height: 33px;
  background: #D9D9D9B2;
  color: rgba(0, 0, 0, 0.70);
  font-size: 16px;
  font-weight: 400;
}

/* Aceitar tudo */
.cnm-btn.accept-all {
  width: 138px;
  height: 33px;
  background: rgba(224, 153, 19, 0.61);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* Aceitar seleção */
.cnm-btn.accept-selection {
  width: 290px;
  height: 40px;
  background: #0000009C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* MOBILE */
@media (max-width: 1200px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px);
    max-width: 450px;
    height: auto;
    padding: 16px 18px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    width: 100%;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cnm-content-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .cnm-left {
    width: 100%;
    gap: 8px;
  }

  #cnm-cookie-banner p {
    width: 100%;
    height: auto;
    font-size: 11px;
    line-height: 1.4;
  }

  .cnm-cookie-options {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
  }

  .cnm-check {
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }

  .cnm-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  /* Ajuste do check no mobile */
  .cnm-check input[type="checkbox"]:checked::before,
  .cnm-check.necessary input[type="checkbox"]:disabled::before {
    left: 3px;
    top: 0px;
    width: 3px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
  }

  .cnm-buttons {
    width: 100%;
    align-items: stretch;
    gap: 8px;
  }

  .cnm-buttons-top {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    flex: 1;
    height: 36px;
    font-size: 12px;
    border-radius: 6px;
  }

  .cnm-btn.accept-selection {
    width: 100%;
    height: 38px;
    font-size: 12px;
    border-radius: 6px;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 15px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 30px);
    padding: 14px 16px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    font-size: 13px;
  }

  #cnm-cookie-banner p {
    font-size: 10px;
  }

  .cnm-check {
    font-size: 9px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    font-size: 11px;
    height: 34px;
  }

  .cnm-btn.accept-selection {
    font-size: 11px;
    height: 36px;
  }
}

/* ============================================
   SEÇÃO BIGNUMBERS - ESTILO REFERÊNCIA
   ============================================ */

.bignumbers-section {
    background: #ff9d01;
    padding: 50px 0;
}

.bignumbers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

/* Item individual */
.bignumber-item {
    text-align: center;
}

/* Valor (número) */
.bignumber-value {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Label (descrição) */
.bignumber-label {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    opacity: 0.95;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 991px) {
    .bignumbers-section {
        padding: 45px 0;
    }

    .bignumbers-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .bignumber-value {
        font-size: 3.5rem;
    }

    .bignumber-label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .bignumbers-section {
        padding: 40px 0;
    }

    .bignumbers-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .bignumber-value {
        font-size: 3rem;
        margin-bottom: 0.375rem;
    }

    .bignumber-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bignumbers-section {
        padding: 35px 0;
    }

    .bignumbers-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .bignumber-value {
        font-size: 2.5rem;
    }

    .bignumber-label {
        font-size: 14px;
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .bignumbers-section {
        padding: 30px 0;
    }

    .bignumber-item {
        break-inside: avoid;
    }
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-button:hover::before {
    width: 120%;
    height: 120%;
}

.floating-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.floating-button:active {
    transform: translateY(-2px) scale(1);
}

.floating-button.whatsapp {
    background: #25D366;
}

.floating-button img {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1); /* Deixa o ícone branco */
}

/* Animação de entrada */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-button {
    animation: floatIn 0.5s ease-out;
}

/* Pulse animation (opcional - ativa atenção) */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

.floating-button.pulse {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
    }
    
    .floating-button img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 12px;
        right: 12px;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
    }
    
    .floating-button img {
        width: 28px;
        height: 28px;
    }
}

/* Tooltip (opcional) */
.floating-button[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1f1f1f;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-button[data-tooltip]::before {
    content: '';
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #1f1f1f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-button[data-tooltip]:hover::after,
.floating-button[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Acessibilidade */
.floating-button:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .floating-button,
    .floating-button::before {
        animation: none !important;
        transition: none !important;
    }
}

/* Badge de notificação (opcional - para futuro uso) */
.floating-button .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4757;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    min-width: 18px;
    text-align: center;
    z-index: 2;
}