/* ============================================
   SISTEMA PARA BARES — STYLESHEET
   ============================================ */

:root {
    --primary-orange: #ff9d01;
    --primary-dark: #e68a00;
    --dark-blue: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --gradient-orange: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ============================================
   BIG NUMBERS
   ============================================ */

.bignumbers {
    padding: 56px 0;
    background: var(--dark-blue);
}

.bignumbers-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.bignum-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 3.5rem;
}

.bignum-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bignum-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    max-width: 140px;
    line-height: 1.4;
    text-align: center;
}

.bignum-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ============================================
   SOLUÇÃO — BLOCOS ALTERNADOS
   ============================================ */

.solucao {
    padding: 90px 0;
    background: var(--gray-100);
}

.solucao-bloco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.solucao-bloco:last-child {
    margin-bottom: 0;
}

.solucao-bloco--reverse {
    direction: rtl;
}

.solucao-bloco--reverse > * {
    direction: ltr;
}

.solucao-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.solucao-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.solucao-texto h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.solucao-texto p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.solucao-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.solucao-lista li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.55;
}

.solucao-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
}

.solucao-cta {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: gap 0.2s;
    gap: 0.25rem;
}

.solucao-cta:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

/* ============================================
   POR QUE O CNM
   ============================================ */

.porque-cnm {
    padding: 90px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.diferencial-item {
    padding: 2.25rem 2.5rem;
    border-right: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.diferencial-item:nth-child(3n) {
    border-right: none;
}

.diferencial-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.diferencial-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diferencial-num::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
    opacity: 0.5;
}

.diferencial-item h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.diferencial-item > p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.diferencial-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.diferencial-lista li {
    font-size: 13px;
    color: var(--gray-500);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.diferencial-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 12px;
}

/* ============================================
   MÓDULOS ADICIONAIS
   ============================================ */

.modulos-adicionais {
    padding: 90px 0;
    background: var(--gray-100);
}

.modulos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.modulo-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.modulo-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.modulo-icon {
    font-size: 28px;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    display: block;
}

.modulo-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.modulo-card p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.55;
}

.modulo-card--cta {
    background: rgba(255, 157, 1, 0.06);
    border-color: rgba(255, 157, 1, 0.3);
}

.modulo-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
}

.modulo-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb347 50%, #ff9d01 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative; z-index: 2;
}

.cta-image {
    display: flex; align-items: center; justify-content: center;
}

.cta-image img {
    width: 100%; max-width: 500px; height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-15px); }
}

.cta-content { text-align: left; color: var(--white); }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 800;
    margin-bottom: 1.25rem; line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-content p {
    font-size: 19px; line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

.cta-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--dark-blue); color: var(--white);
    padding: 1.1rem 2.75rem; border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-display); font-weight: 700; font-size: 17px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(15,23,42,0.3);
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    background: #0a0f1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.4);
    color: var(--white);
}

.cta-btn-secondary {
    background: var(--white); color: var(--primary-orange);
    padding: 1.1rem 2.75rem; border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-display); font-weight: 700; font-size: 17px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(255,255,255,0.2);
    border: 2px solid transparent;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
    color: var(--primary-dark);
}

/* ============================================
   CONTATO / FORMULÁRIO
   ============================================ */

.contato {
    padding: 100px 0;
    background: var(--gray-100);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contato-info h2 {
    font-family: var(--font-display);
    font-size: 38px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 1rem;
}

.contato-info > p {
    font-size: 17px; color: var(--gray-700);
    line-height: 1.7; margin-bottom: 2.5rem;
}

.beneficios {
    display: flex; flex-direction: column; gap: 1.5rem;
}

.beneficio-item {
    display: flex; align-items: flex-start; gap: 1rem;
}

.check {
    width: 32px; height: 32px;
    background: var(--gradient-orange);
    color: var(--white); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}

.beneficio-item strong {
    display: block; font-weight: 700;
    color: var(--gray-900); margin-bottom: 0.25rem;
}

.beneficio-item p {
    font-size: 14px; color: var(--gray-700);
    margin: 0;
}

.form-inline {
    background: var(--white);
    padding: 2.5rem; border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 1rem;
}

.form-inline input {
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--gray-300); border-radius: 10px;
    font-family: var(--font-body); font-size: 15px;
    transition: border-color 0.2s;
    color: var(--gray-900);
}

.form-inline input:focus {
    outline: none; border-color: var(--primary-orange);
}

.form-inline input::placeholder {
    color: var(--gray-500);
}

.btn-submit {
    background: var(--gradient-orange); color: var(--white);
    padding: 1rem; border: none; border-radius: 10px;
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255,157,1,0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,157,1,0.35);
}

.btn-submit:disabled {
    opacity: 0.6; cursor: not-allowed; transform: none;
}

/* ============================================
   OUTROS SEGMENTOS
   ============================================ */

.outros-segmentos {
    padding: 80px 0;
    background: var(--white);
}

.segmentos-mini-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.segmento-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    text-decoration: none;
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all 0.3s;
    min-width: 120px;
}

.segmento-mini-card .material-symbols-outlined {
    font-size: 28px;
    color: var(--gray-500);
    transition: color 0.3s;
}

.segmento-mini-card:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.segmento-mini-card:hover .material-symbols-outlined {
    color: var(--primary-orange);
}

.segmento-mini-card--ver-todos {
    background: rgba(255, 157, 1, 0.06);
    border-color: rgba(255, 157, 1, 0.3);
    color: var(--primary-orange);
}

.segmento-mini-card--ver-todos .material-symbols-outlined {
    color: var(--primary-orange);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .desafios-grid { grid-template-columns: repeat(2, 1fr); }
    .modulos-grid { grid-template-columns: repeat(3, 1fr); }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }

    .diferencial-item:nth-child(3n)   { border-right: 1px solid var(--gray-300); }
    .diferencial-item:nth-child(2n)   { border-right: none; }
    .diferencial-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-300); }
    .diferencial-item:nth-last-child(-n+2) { border-bottom: none; }

    .solucao-bloco { gap: 2.5rem; }
    .contato-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* BIG NUMBERS */
    .bignumbers-grid { flex-direction: column; gap: 0; }
    .bignum-item { padding: 1.5rem 2rem; }
    .bignum-value { font-size: 44px; }
    .bignum-label { font-size: 15px; max-width: 200px; }
    .bignum-divider { width: 48px; height: 1px; margin: 0 auto; }

    /* DESAFIOS */
    .desafios { padding: 60px 0; }
    .desafios-grid { grid-template-columns: 1fr; }

    /* SOLUÇÃO */
    .solucao { padding: 60px 0; }
    .solucao-bloco {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3.5rem;
        direction: ltr;
    }
    .solucao-bloco--reverse { direction: ltr; }
    .solucao-bloco--reverse > * { direction: ltr; }
    .solucao-visual { order: -1; }
    .solucao-texto h3 { font-size: 22px; }

    /* DIFERENCIAIS */
    .diferenciais-grid { grid-template-columns: 1fr; }
    .diferencial-item {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-300) !important;
        padding: 1.75rem 0;
    }
    .diferencial-item:last-child { border-bottom: none !important; }

    /* MÓDULOS */
    .modulos-adicionais { padding: 60px 0; }
    .modulos-grid { grid-template-columns: repeat(2, 1fr); }

    /* SECTION HEADER */
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 16px; }

    /* CTA */
    .cta { padding: 60px 0; }
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .cta-image { order: -1; }
    .cta-image img { max-width: 320px; }
    .cta-content h2 { font-size: 30px; }
    .cta-content p { font-size: 16px; }
    .cta-buttons { justify-content: center; flex-direction: column; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; padding: 1rem 1.5rem; }

    /* CONTATO */
    .contato { padding: 60px 0; }
    .form-inline { padding: 1.75rem; }
    .contato-info h2 { font-size: 28px; }

    /* OUTROS SEGMENTOS */
    .outros-segmentos { padding: 60px 0; }
    .segmentos-mini-grid { gap: 0.75rem; }
    .segmento-mini-card { padding: 1.25rem 1.5rem; min-width: 100px; }
}

@media (max-width: 480px) {
    .bignumbers { padding: 40px 0; }
    .bignum-value { font-size: 40px; }
    .bignum-item { padding: 1.25rem 1.5rem; }

    .desafios { padding: 50px 0; }
    .solucao { padding: 50px 0; }
    .porque-cnm { padding: 50px 0; }
    .modulos-adicionais { padding: 50px 0; }
    .cta { padding: 50px 0; }
    .cta-content h2 { font-size: 24px; }

    .modulos-grid { grid-template-columns: 1fr; }
}

/* -------------------------
   COOKIE BANNER (CNM STYLE)
   ------------------------- */

#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;
  }
}

/* Estrutura idêntica ao style.css original */
.floating-buttons {
    bottom: 90px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
    position: fixed;
    right: 0;
    z-index: 9999; /* Garante que fique acima de tudo */
}

.whatsapp {
    background: #27d045;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #000;
    z-index: 1000;
    cursor: pointer;
    padding: 10px;
    margin: 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    text-decoration: none;
}

/* Garante que a imagem dentro do botão apareça corretamente */
.floating-button img {
    width: 100%;
    height: auto;
    max-width: 35px; /* Tamanho padrão do ícone */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ============================================
   RESPONSIVIDADE CTA
   ============================================ */

@media (max-width: 992px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-image {
        order: -1;
    }
    
    .cta-image img {
        max-width: 400px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        gap: 2rem;
    }
    
    .cta-image img {
        max-width: 320px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-image img {
        max-width: 280px;
    }
}