.elementor-1187 .elementor-element.elementor-element-129bc1d{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1187 .elementor-element.elementor-element-1c74cca{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-b93a3d5{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-f9d4123{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-ade6248{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-df01cd3{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-f63bbcf{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-2822a74{width:100%;max-width:100%;}.elementor-1187 .elementor-element.elementor-element-d8c19c6{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-1c74cca *//* Escopo para limitar as fontes só dentro desta página */
body.page-id-1187 {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* Títulos só desta página */
body.page-id-1187 h1{
    color: #ffffff; /* branco */
},
body.page-id-1187 h2,
body.page-id-1187 h3,
body.page-id-1187 h4,
body.page-id-1187 h5,
body.page-id-1187 h6 {
    font-family: 'Lato', sans-serif;
    color: var(--navy);
}



/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - ECREX */
    --navy: #3d4852;
    --navy-dark: #2b3138;
    --navy-light: #525866;
    
    --gold: #f4b942;
    --gold-dark: #d4952a;
    --gold-light: #ffcc5c;
    
    --neutral: #f5f6f7;
    --neutral-dark: #e0e2e5;
    --cream: #f7f6f2;
    
    --white: #ffffff;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --text-dark: #1f2937;
    
    /* Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(61, 72, 82, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(61, 72, 82, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(61, 72, 82, 0.15);
    --shadow-gold: 0 8px 25px -8px rgba(244, 185, 66, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Títulos principais */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    color: var(--navy);
    margin-bottom: 1rem;
}


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 72, 82, 0.9), rgba(43, 49, 56, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    height: 5rem;
    object-fit: contain;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logo-image {
        height: 6rem;
    }
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitles {
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-supporting {
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-support-text {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 1rem;
}

.hero-brand {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gold);
    font-weight: bold;
}

.brand-highlight {
    color: var(--gold-light);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 185, 66, 0.3);
}

.trust-item {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

/* garante o contexto do absoluto */
.hero-section { position: relative; }

/* posição do indicador, acima do texto */
.hero-section .scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40rem;            /* ajuste aqui o quanto quiser */
  z-index: 20;             /* fica acima dos textos/botões */
  pointer-events: none;    /* não bloqueia clique nos botões */
  animation: bounce 5s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--gold);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b93a3d5 *//* Apresentação Section */
body.page-id-1187 .apresentacao-section {
    padding: 5rem 0;
    background: var(--cream);
}

body.page-id-1187 .apresentacao-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    body.page-id-1187 .apresentacao-grid {
        grid-template-columns: 1fr 1fr;
    }
}

body.page-id-1187 .apresentacao-text {
    space-y: 1.5rem;
}

body.page-id-1187 .text-content {
    color: var(--navy-light);
}

body.page-id-1187 .text-paragraph {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

body.page-id-1187 .text-paragraph-emphasis {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    font-weight: 600;
    color: var(--navy);
}

body.page-id-1187 .value-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}

body.page-id-1187 .card-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

body.page-id-1187 .card-content {
    color: var(--navy-light);
}

body.page-id-1187 .card-paragraph {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

body.page-id-1187 .card-paragraph strong {
    color: var(--gold-dark);
}

body.page-id-1187 .highlight-box {
    background: rgba(244, 185, 66, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

body.page-id-1187 .highlight-text {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 1rem;
}

body.page-id-1187 .highlight-emphasis {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--navy);
    font-weight: 600;
}

body.page-id-1187 .text-accent {
    color: var(--gold-dark);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f9d4123 *//* DIFERENCIAIS – página 1187 */
body.page-id-1187 .diferenciais-section {
  padding: 5rem 0;
  background: var(--white, #ffffff);
}

body.page-id-1187 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

body.page-id-1187 .section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy, #3d4852);
  margin-bottom: 1rem;
}

body.page-id-1187 .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--navy-light, #525866);
  max-width: 48rem;
  margin: 0 auto;
}

/* Grid de cards */
body.page-id-1187 .features-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  body.page-id-1187 .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  body.page-id-1187 .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

body.page-id-1187 .feature-card {
  background: var(--white, #ffffff);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft, 0 4px 6px -1px rgba(61,72,82,.1));
  padding: 1.5rem;
  border: 1px solid var(--neutral-dark, #e0e2e5);
  transition: all .3s cubic-bezier(0.4,0,0.2,1);
}
body.page-id-1187 .feature-card:hover {
  box-shadow: var(--shadow-medium, 0 10px 15px -3px rgba(61,72,82,.1));
  transform: translateY(-8px);
}

body.page-id-1187 .feature-icon {
  color: var(--gold, #f4b942);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

body.page-id-1187 .feature-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy, #3d4852);
  margin-bottom: 0.75rem;
}

body.page-id-1187 .feature-description {
  color: var(--navy-light, #525866);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Bloco de métricas */
body.page-id-1187 .benefits-stats {
  background: linear-gradient(135deg, rgba(244,185,66,0.1), rgba(244,185,66,0.05));
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  body.page-id-1187 .benefits-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.page-id-1187 .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-id-1187 .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold, #f4b942);
  margin-bottom: 0.5rem;
}

body.page-id-1187 .stat-label {
  color: var(--navy, #3d4852);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

body.page-id-1187 .stat-desc {
  color: var(--navy-light, #525866);
  font-size: 0.875rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ade6248 *//* Botão laranja com texto branco */
body.page-id-1187 .key-message .btn-primary {
  background: linear-gradient(135deg, #f7931e, #f37000); /* laranja */
  color: #ffffff; /* texto branco */
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.page-id-1187 .key-message .btn-primary:hover {
  background: linear-gradient(135deg, #f37000, #f7931e); /* inversão no hover */
  transform: translateY(-3px);
}

/* Palavra ECREX em amarelo */
body.page-id-1187 .key-message strong {
  color: var(--gold, #f4b942);
  font-weight: 700;
}


/* PARA QUEM É – página 1187 */
body.page-id-1187 .para-quem-section {
  padding: 5rem 0;
  background: var(--navy, #3d4852);
  color: var(--white, #ffffff);
}

body.page-id-1187 .section-center {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

body.page-id-1187 .section-title-white {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white, #ffffff);
  margin-bottom: 1.5rem;
}

body.page-id-1187 .section-subtitle-gold {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--gold-light, #ffcc5c);
  margin-bottom: 3rem;
}

body.page-id-1187 .problems-list { margin-bottom: 3rem; }

body.page-id-1187 .problem-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  transition: all .3s ease;
}
body.page-id-1187 .problem-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.page-id-1187 .problem-icon {
  color: var(--gold, #f4b942);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

body.page-id-1187 .problem-text {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--white, #ffffff);
}

body.page-id-1187 .key-message {
  background: linear-gradient(135deg, rgba(244,185,66,0.2), rgba(244,185,66,0.1));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(244,185,66,0.3);
}

body.page-id-1187 .message-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--gold, #f4b942);
  margin-bottom: 1rem;
}

body.page-id-1187 .message-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--white, #ffffff);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-df01cd3 *//* Deixar "Programa ECREX" branco */
body.page-id-1187 .pricing-title {
  color: #ffffff !important;
}


/* Container básico (caso ainda não tenha) */
body.page-id-1187 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* OFERTA */
body.page-id-1187 .oferta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream, #f7f6f2), var(--white, #ffffff));
}

body.page-id-1187 .oferta-content { max-width: 64rem; margin: 0 auto; }

body.page-id-1187 .section-header { text-align: center; margin-bottom: 2rem; }

body.page-id-1187 .section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy, #3d4852);
  margin-bottom: 0.75rem;
}

body.page-id-1187 .section-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--navy-light, #525866);
  text-align: center;
  margin: 0 auto 2rem;
}

/* Card de preço */
body.page-id-1187 .pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(61,72,82,.15);
  border: 1px solid rgba(244,185,66,0.2);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

body.page-id-1187 .pricing-header {
  background: linear-gradient(135deg, var(--navy, #3d4852), var(--navy-dark, #2b3138));
  color: #fff;
  padding: 2rem;
  text-align: center;
}

body.page-id-1187 .pricing-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

body.page-id-1187 .pricing-subtitle { color: var(--gold-light, #ffcc5c); margin-bottom: 1rem; }

body.page-id-1187 .pricing-amount {
  display: flex; align-items: baseline; justify-content: center; gap: .5rem; margin-bottom: .5rem;
}
body.page-id-1187 .price-value { font-size: 3rem; font-weight: 800; }
body.page-id-1187 .price-period { font-size: 1.25rem; color: var(--gold-light, #ffcc5c); }

body.page-id-1187 .pricing-description { color: var(--gray-200, #e5e7eb); font-size: .9rem; }

/* Conteúdo do card */
body.page-id-1187 .pricing-content { padding: 2rem; }

body.page-id-1187 .benefits-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--navy, #3d4852);
  margin-bottom: 1rem;
}

body.page-id-1187 .benefits-list { margin-bottom: 1.5rem; }
body.page-id-1187 .benefit-item {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem;
  color: var(--navy-light, #525866);
  font-size: 1rem;
}
body.page-id-1187 .benefit-icon { color: var(--gold, #f4b942); font-size: 1.1rem; }

/* Garantias */
body.page-id-1187 .guarantees { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  body.page-id-1187 .guarantees { grid-template-columns: repeat(3, 1fr); }
}
body.page-id-1187 .guarantee-item {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  text-align: center; padding: .75rem;
  background: rgba(244,185,66,0.1); border-radius: .5rem;
}
body.page-id-1187 .guarantee-item i { color: var(--gold, #f4b942); }
body.page-id-1187 .guarantee-item span { font-weight: 600; color: var(--navy, #3d4852); }

/* CTA – botão laranja e ECREX amarelo (quando usado em textos) */
body.page-id-1187 .btn-primary-large {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  padding: 1.25rem 2rem; border-radius: .8rem; text-decoration: none;
  background: linear-gradient(135deg, #f7931e, #f37000); /* laranja */
  color: #fff; font-weight: 700; font-size: 1.15rem; border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 25px -10px rgba(243,112,0,.45);
}
body.page-id-1187 .btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(243,112,0,.55);
  background: linear-gradient(135deg, #f37000, #f7931e);
}
body.page-id-1187 .cta-support { font-size: .9rem; color: var(--navy-light, #525866); margin-top: .75rem; }

/* Urgência */
body.page-id-1187 .urgency-banner { text-align: center; margin-top: 1rem; }
body.page-id-1187 .urgency-text {
  display: inline-block; padding: .75rem 1.5rem; border-radius: .75rem;
  background: rgba(244,185,66,0.2); border: 1px solid rgba(244,185,66,0.4);
  color: var(--navy, #3d4852); font-weight: 700;
}

/* Destaque “ECREX” amarelo (em qualquer texto) */
body.page-id-1187 strong, 
body.page-id-1187 .text-accent {
  color: var(--gold, #f4b942);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f63bbcf *//* DEPOIMENTOS – página 1187 */
body.page-id-1187 .depoimentos-section {
  padding: 5rem 0;
  background: var(--neutral, #f5f6f7);
}

body.page-id-1187 .depoimentos-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

body.page-id-1187 .depoimentos-section .section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy, #3d4852);
  margin-bottom: 0.75rem;
}

body.page-id-1187 .depoimentos-section .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--navy-light, #525866);
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards */
body.page-id-1187 .testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  body.page-id-1187 .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.page-id-1187 .testimonial-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft, 0 4px 6px -1px rgba(61,72,82,.1));
  padding: 1.5rem;
  transition: all .3s ease;
  border: 1px solid var(--neutral-dark, #e0e2e5);
}
body.page-id-1187 .testimonial-card:hover {
  box-shadow: var(--shadow-medium, 0 10px 15px -3px rgba(61,72,82,.1));
  transform: translateY(-4px);
}

body.page-id-1187 .testimonial-content { margin-bottom: 0.75rem; }

body.page-id-1187 .testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: var(--navy-light, #525866);
}

body.page-id-1187 .testimonial-author {
  color: var(--gold-dark, #d4952a);
  font-weight: 700;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2822a74 *//* FAQ – página 1187 */
body.page-id-1187 .faq-section {
  padding: 5rem 0;
  background: var(--white, #ffffff);
}

body.page-id-1187 .faq-content { max-width: 48rem; margin: 0 auto; }

body.page-id-1187 .faq-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

body.page-id-1187 .faq-section .section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy, #3d4852);
  margin-bottom: .75rem;
}

body.page-id-1187 .faq-section .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--navy-light, #525866);
}

/* Acordeão */
body.page-id-1187 .faq-accordion { margin-top: 1.25rem; margin-bottom: 2rem; }

body.page-id-1187 .faq-item {
  border: 1px solid var(--neutral-dark, #e0e2e5);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .3s ease;
  background: #fff;
}
body.page-id-1187 .faq-item:hover { box-shadow: 0 4px 10px -4px rgba(61,72,82,.15); }

body.page-id-1187 .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--navy, #3d4852);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .25rem 0;
}

body.page-id-1187 .faq-icon {
  font-size: 1rem;
  color: var(--gold, #f4b942);
  transition: transform .25s ease;
}
body.page-id-1187 .faq-item.active .faq-icon { transform: rotate(180deg); }

body.page-id-1187 .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
body.page-id-1187 .faq-answer p {
  color: var(--navy-light, #525866);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  padding: .75rem 0 0.5rem;
}

/* CTA final da FAQ */
body.page-id-1187 .faq-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(244,185,66,.1), rgba(244,185,66,.05));
  border-radius: 1rem;
  padding: 2rem;
}
body.page-id-1187 .cta-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy, #3d4852);
  margin-bottom: .5rem;
}
body.page-id-1187 .cta-description {
  color: var(--navy-light, #525866);
  margin-bottom: 1rem;
}
body.page-id-1187 .faq-cta .btn-primary {
  background: linear-gradient(135deg, #f7931e, #f37000);
  color: #fff;
  font-weight: 700;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 25px -10px rgba(243,112,0,.45);
}
body.page-id-1187 .faq-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px rgba(243,112,0,.55);
}

/* Destaque ECREX em amarelo */
body.page-id-1187 .faq-section strong { color: var(--gold, #f4b942); }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d8c19c6 *//* CTA FINAL – página 1187 */
body.page-id-1187 .cta-final-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy, #3d4852), var(--navy-dark, #2b3138));
  color: var(--white, #ffffff);
}

body.page-id-1187 .cta-final-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

body.page-id-1187 .cta-header { margin-bottom: 3rem; }

body.page-id-1187 .cta-title-xl {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white, #ffffff);
  margin-bottom: 1rem;
}

body.page-id-1187 .cta-subtitle-large {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--gold-light, #ffcc5c);
  max-width: 48rem;
  margin: 0 auto;
}

/* Benefícios rápidos */
body.page-id-1187 .benefits-quick {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
@media (min-width: 768px) {
  body.page-id-1187 .benefits-quick { grid-template-columns: repeat(3, 1fr); }
}

body.page-id-1187 .benefit-quick {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s ease;
}
body.page-id-1187 .benefit-quick:hover { background: rgba(255, 255, 255, 0.15); }

body.page-id-1187 .benefit-quick-icon {
  display: block;
  margin: 0 auto .8rem;
  font-size: 2rem;
  color: var(--gold, #f4b942);
}

body.page-id-1187 .benefit-quick-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--white, #ffffff);
  margin-bottom: .25rem;
}

body.page-id-1187 .benefit-quick-desc {
  color: var(--gray-200, #e5e7eb);
  font-size: .95rem;
}

/* Card final de oferta */
body.page-id-1187 .final-offer {
  background: linear-gradient(135deg, rgba(244,185,66,0.2), rgba(244,185,66,0.1));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(244,185,66,0.3);
  margin-bottom: 2rem;
}

body.page-id-1187 .offer-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--gold, #f4b942);
  margin-bottom: .75rem;
}

body.page-id-1187 .offer-title strong { color: var(--gold, #f4b942); }

body.page-id-1187 .offer-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--white, #ffffff);
  margin-bottom: 1.25rem;
}

body.page-id-1187 .offer-price {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin-bottom: 1rem;
}
body.page-id-1187 .price-final {
  font-size: 1.875rem; font-weight: 800; color: var(--gold, #f4b942);
}
body.page-id-1187 .price-note { color: var(--white, #ffffff); }

body.page-id-1187 .btn-primary-final {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.15rem 2rem; border-radius: .9rem; text-decoration: none;
  background: linear-gradient(135deg, #f7931e, #f37000); /* laranja */
  color: #ffffff; font-weight: 800; font-size: 1.1rem; border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px -12px rgba(243,112,0,.5);
}
body.page-id-1187 .btn-primary-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(243,112,0,.6);
  background: linear-gradient(135deg, #f37000, #f7931e);
}

body.page-id-1187 .offer-support {
  font-size: .9rem;
  color: var(--gray-300, #d1d5db);
  margin-top: .75rem;
}

/* Mensagem final */
body.page-id-1187 .final-message {
  border-top: 1px solid rgba(244,185,66,0.3);
  padding-top: 1.5rem;
}

body.page-id-1187 .message-quote {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--gray-200, #e5e7eb);
  font-style: italic;
  margin-bottom: .4rem;
}

body.page-id-1187 .message-author {
  color: var(--gold, #f4b942);
  font-weight: 700;
}/* End custom CSS */