/*
 * Custom styles - Landing Page Andrea Villar
 * Otimizado para conversao (Google Ads + Meta Ads)
 */

/* =============================================================================
   Smooth Scroll
   ============================================================================= */
html {
  scroll-behavior: smooth;
}

#sobre-mim,
.contact-section {
  scroll-margin-top: 80px;
}

/* =============================================================================
   Header simplificado (sem icones de distracao)
   ============================================================================= */
.lp-header .header-content {
  display: flex;
  justify-content: flex-start;
}

.lp-header .text-logo {
  float: none;
  text-align: left;
}

/* =============================================================================
   Hero Section - 1a dobra
   Hierarquia: headline (beneficio) > subtitle (emocional) > nome (autoridade)
   ============================================================================= */

/* Nome como reforco de autoridade (secundario ao beneficio) */
.hero-name {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
}

.hero-name span {
  color: #007ced;
  font-weight: 600;
  margin-left: 8px;
  font-size: 13px;
  background: #eef5ff;
  padding: 3px 10px;
  border-radius: 12px;
}

/* Beneficio principal como h1 — maximo destaque */
.hero-headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25em;
  color: #222;
  margin-bottom: 12px;
  margin-top: 0;
  max-width: 540px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.55em;
  color: #666;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Bloco de CTA principal */
.hero-cta-block {
  margin-top: 0;
}

.hero-cta-block .btn-lg {
  padding: 17px 36px;
  font-size: 17px;
  border-radius: 35px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-cta-block .btn-lg i {
  margin-right: 10px;
  font-size: 22px;
  vertical-align: -2px;
}

/* Linha de confianca abaixo da CTA do hero — grid 2x2 */
.hero-trust-line {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 24px;
  font-size: 12px;
  color: #666;
  max-width: 420px;
}

.hero-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 3px 0;
}

.hero-trust-line i {
  font-size: 12px;
  color: #28a745;
  flex-shrink: 0;
}

/* Botao btn-lg generico */
.btn-lg {
  padding: 17px 36px;
  font-size: 17px;
  border-radius: 35px;
  font-weight: 600;
}

.btn-lg i {
  margin-right: 10px;
  font-size: 20px;
  vertical-align: -2px;
}

@media only screen and (max-width: 767px) {
  .hero-name {
    text-align: center;
    font-size: 14px;
  }

  .hero-headline {
    text-align: center;
    font-size: 22px;
    line-height: 1.35em;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55em;
    text-align: center;
    max-width: 100%;
  }

  .hero-cta-block {
    text-align: center;
  }

  .hero-cta-block .btn-lg {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-trust-line {
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    max-width: 100%;
    font-size: 11px;
    justify-items: center;
  }
}

/* =============================================================================
   Block Title + Subtitle
   ============================================================================= */
.block-subtitle {
  font-size: 16px;
  color: #777;
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.5em;
}

@media only screen and (max-width: 767px) {
  .block-subtitle {
    font-size: 14px;
  }
}

/* =============================================================================
   Equal Height Cards — garante altura uniforme por linha
   ============================================================================= */
.equal-height-row>[class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.equal-height-row>[class*="col-"]>.audience-card,
.equal-height-row>[class*="col-"]>.help-card,
.equal-height-row>[class*="col-"]>.step-card {
  flex: 1;
  margin-bottom: 0;
}

/* =============================================================================
   Audience Cards (Para quem é o atendimento)
   ============================================================================= */
.audience-grid {
  margin-bottom: 0;
}

.audience-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  border-color: #007ced40;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.audience-icon {
  font-size: 28px;
  color: #007ced;
  margin-bottom: 12px;
}

.audience-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.audience-card p {
  font-size: 14px;
  line-height: 1.65em;
  color: #666;
  margin: 0;
}

/* =============================================================================
   CTA Section (bloco repetido ao longo da pagina)
   ============================================================================= */
.cta-section {
  text-align: center;
  background: #f8faff;
  border: 2px dashed #dde4f0;
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}

.cta-section .btn,
.cta-section .btn-lg {
  margin-top: 0;
}

.cta-reassurance {
  margin-top: 14px;
  font-size: 13px;
  color: #888;
}

.cta-reassurance i {
  margin-right: 4px;
  color: #28a745;
}

@media only screen and (max-width: 767px) {
  .cta-section {
    padding: 22px 16px;
  }

  .cta-section .btn-lg {
    display: block;
    width: 100%;
  }
}

/* =============================================================================
   Help Cards (Como posso te ajudar)
   ============================================================================= */
.help-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 24px;
  transition: border-color 0.25s ease;
}

.help-card:hover {
  border-color: #007ced40;
}

.help-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #007ced;
}

.help-card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.help-card-content p {
  font-size: 14px;
  line-height: 1.6em;
  color: #666;
  margin: 0;
}

/* =============================================================================
   Steps Grid (Como funciona)
   ============================================================================= */
.steps-grid {
  margin-bottom: 0;
}

.step-card {
  text-align: center;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 16px;
  padding: 28px 20px 22px;
  margin-bottom: 24px;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #007ced;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6em;
  color: #666;
  margin: 0;
}

/* =============================================================================
   About Section
   ============================================================================= */
.about-photo img {
  border-radius: 15px;
  max-width: 100%;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, .1);
}

.about-text-left {
  text-align: left;
}

.about-text-left h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #222;
}

.about-subtitle {
  font-size: 15px !important;
  color: #007ced !important;
  font-weight: 500;
  margin-bottom: 20px !important;
}

.about-text-left p {
  font-size: 15px;
  line-height: 1.8em;
}

.about-cta {
  margin-top: 20px;
}

/* Trust items no about */
.about-trust-row {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.about-trust-item i {
  color: #28a745;
  font-size: 16px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .about-photo {
    margin-bottom: 30px;
    text-align: center;
  }

  .about-photo img {
    max-width: 70%;
  }

  .about-text-left {
    text-align: left;
  }
}

/* =============================================================================
   Contact Section
   ============================================================================= */
.contact-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

/* =============================================================================
   Contact Cards
   ============================================================================= */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  align-items: stretch;
}

/* Reset colunas Bootstrap dentro do contact-grid */
.contact-grid > [class*="col-"] {
  float: none;
  padding: 0;
  margin-bottom: 0;
}

.contact-grid > .col-xs-12 {
  width: 100%;
}

.contact-grid > .col-xs-6 {
  width: calc(50% - 12px);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  margin-bottom: 0;
  border-radius: 30px;
  background: #fff;
  border: 2px solid #d5d5d5;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, .15);
  color: inherit;
  height: 100%;
}

.contact-card:hover {
  color: #333;
  border-color: #007ced;
  background-color: #fff;
  box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, .22);
  text-decoration: none;
}

/* WhatsApp — card principal, maior destaque */
.contact-card-primary {
  border-color: #25D366;
  border-width: 2.5px;
  padding: 24px 28px;
  background: #f8fff9;
  height: auto;
}

.contact-card-primary:hover {
  border-color: #1ebe57;
  background: #f0fdf4;
  box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.2);
}

.contact-card-primary .contact-card-icon {
  color: #25D366;
}

.contact-card-primary .contact-card-content h4 {
  color: #1a8a3f;
}

/* Cards secundarios — discretos mas com presenca */
.contact-card-secondary {
  padding: 18px 20px;
  box-shadow: none;
  height: 100%;
}

.contact-card-secondary:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card-secondary .contact-card-content h4 {
  font-size: 15px;
}

.contact-card-secondary .contact-card-content p {
  font-size: 12px;
}

.contact-card-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #25D366;
  flex-shrink: 0;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  font-size: 22px;
  color: #007ced;
}

.contact-card-content {
  flex: 1;
  min-width: 0;
}

.contact-card-content h4 {
  margin: 0 0 2px 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.contact-card-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  /* Empilha os cards verticalmente */
  .contact-grid > .col-xs-6 {
    width: 100%;
  }

  .contact-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-card-primary {
    padding: 18px 20px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .contact-card-content h4 {
    font-size: 15px;
  }

  .contact-card-content p {
    font-size: 12px;
  }
}

/* =============================================================================
   Footer
   ============================================================================= */
.site-footer {
  margin: 40px 0 0 0 !important;
  padding: 20px 0 0 0 !important;
  background-color: transparent !important;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 !important;
  text-align: center;
}

.footer-copyrights {
  float: none;
  text-align: center;
}

.footer-copyrights p {
  margin: 0;
  line-height: 21px;
  font-size: 13px;
  color: #9e9e9e;
}

.footer-copyrights p a {
  color: #007ced;
  text-decoration: none;
}

.footer-copyrights p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .site-footer {
    margin: 30px 0 0 0 !important;
    text-align: center;
  }
}

/* =============================================================================
   Cookie Consent Banner (LGPD)
   ============================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #f0f0f0;
  z-index: 99999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 30px;
}

.cookie-banner-content p {
  margin: 0;
  padding-right: 25px;
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  line-height: 1.6em;
  color: #555;
}

.cookie-banner-content p a {
  color: #007ced;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid #d5d5d5;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', Helvetica, sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #fff;
  color: #666;
}

.cookie-btn.accept {
  background: #007ced;
  color: #fff;
  border-color: #007ced;
}

.cookie-btn.accept:hover {
  background: #0066cc;
  border-color: #0066cc;
}

.cookie-btn.reject {
  background: #fff;
  color: #888;
  border-color: #ddd;
}

.cookie-btn.reject:hover {
  background: #f5f5f5;
}

@media only screen and (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px;
  }

  .cookie-banner-content p {
    padding-right: 0;
    padding-bottom: 12px;
    font-size: 12px;
  }

  .cookie-buttons {
    justify-content: flex-end;
    padding: 0;
  }

  .cookie-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* =============================================================================
   Thank You Page
   ============================================================================= */
.thankyou-section {
  text-align: center;
  padding: 40px 0;
}

.thankyou-icon {
  font-size: 64px;
  color: #28a745;
  margin-bottom: 20px;
}

.thankyou-section h2 {
  margin-bottom: 15px;
}

.thankyou-section p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
}

/* =============================================================================
   Privacy Policy Page
   ============================================================================= */
.privacy-content h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.privacy-content p,
.privacy-content ul {
  font-size: 15px;
  line-height: 1.8em;
}

.privacy-content ul {
  padding-left: 25px;
}

.privacy-content ul li {
  margin-bottom: 5px;
}

.privacy-last-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 25px;
}

/* =============================================================================
   Responsive: Contact Cards
   ============================================================================= */
@media only screen and (max-width: 767px) {
  .contact-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .contact-card-content h4 {
    font-size: 15px;
  }

  .contact-card-content p {
    font-size: 12px;
  }
}

/* ============================================================
   FAQ v2 — Accordion com estética alinhada ao site
   Adicione este bloco ao final do seu custom.css
   ============================================================ */

/* Container */
.faq-list.faq-list-v2 {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cada item */
.faq-list-v2 .faq-item-v2 {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  width: 100%;
}

/* Cabeçalho clicável — div, sem herança de button */
.faq-list-v2 .faq-question-v2 {
  width: 100%;
  background: #ebebeb;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-list-v2 .faq-question-v2:hover {
  background: #e0e0e0;
}

/* Aberto — achata o fundo para unir com a resposta */
.faq-list-v2 .faq-item-v2--open .faq-question-v2 {
  background: #e8e8e8;
  border-radius: 10px 10px 0 0;
}

/* Texto */
.faq-list-v2 .faq-q-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
  color: inherit;
  pointer-events: none;
}

/* Ícone */
.faq-list-v2 .faq-icon-wrap {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  background: none;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.faq-list-v2 .faq-icon-wrap i {
  font-size: 11px;
}

.faq-list-v2 .faq-item-v2--open .faq-icon-wrap {
  opacity: 1;
}

/* Resposta — fundo branco, arredondamento inferior */
.faq-list-v2 .faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

.faq-list-v2 .faq-answer-inner {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-list-v2 .faq-answer-inner p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  opacity: 0.8;
}

/* Botão WhatsApp dentro da resposta */
.faq-list-v2 .faq-cta-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Subtítulo da seção */
#faq .block-subtitle {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.6;
}
