/* ===========================
   HOME - CSS (PADRÃO DO SITE)
   Escopo total: .home-page
   =========================== */

   .home-page{
    /* Tokens padrão (mantidos aqui pra página poder ter overrides se precisar) */
    --white: #E5E7EB;
    --primario: #0C1524;
    --secundario: #1a2840;
    --destaque: #D09B4D;
    --texto: #4a5568;
  
    --areas-bg: #f8fafc;
    --card-bg: #ffffff;
    --borda: #e2e8f0;
    --suave: #f1f5f9;
  
    --transicao: all 0.35s ease;
    --sombra: 0 10px 40px rgba(12, 21, 36, 0.08);
    --sombra-hover: 0 20px 60px rgba(12, 21, 36, 0.12);
  
    --degrade-primario: linear-gradient(135deg, #0C1524 0%, #1a2840 100%);
    --degrade-destaque: linear-gradient(135deg, #D09B4D 0%, #e8b162 100%);
  }
  
  /* ===========================
     HERO
     =========================== */
  
  .home-page .hero{
    background: var(--degrade-primario), url('../images/background/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .home-page .hero::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(45deg,
              rgba(208, 155, 77, 0.10) 0%,
              rgba(12, 21, 36, 0.90) 100%);
    pointer-events:none;
  }
  
  .home-page .hero .container{
    position: relative;
    z-index: 1;
  }
  
  .home-page .hero p{
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.92;
    color: rgba(255,255,255,0.92);
  }
  
  /* highlight padrão (igual filosofia da Sobre) */
  .home-page .highlight{
    color: var(--destaque);
    position: relative;
    display: inline-block;
  }
  .home-page .highlight::after{
    content:'';
    position:absolute;
    bottom: 6px;
    left:0;
    width:100%;
    height:10px;
    background: rgba(208,155,77,0.18);
    z-index:-1;
    border-radius: 6px;
  }
  
  /* ===========================
     ÁREAS (Preview)
     =========================== */
  
  .home-page .areas-preview{
    padding: 80px 0;
    background: var(--white);
  }
  
  .home-page .areas-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 35px;
  }
  
  .home-page .area-card{
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    border: 1px solid rgba(12,21,36,0.06);
    border-top: 4px solid var(--destaque);
  }
  
  .home-page .area-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
  }
  
  .home-page .area-card i{
    font-size: 2.8rem;
    color: var(--destaque);
    margin-bottom: 16px;
  }
  
  .home-page .area-card h3{
    color: var(--primario);
    margin-bottom: 10px;
  }
  
  .home-page .gold-link{
    color: var(--destaque);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    position: relative;
    padding-bottom: 2px;
  }
  
  .home-page .gold-link::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background: var(--destaque);
    transition: width 0.25s ease;
  }
  
  .home-page .gold-link:hover::after{
    width:100%;
  }
  
  /* ===========================
   WHY US
   Mesma pegada do areas-preview (cards iguais)
   + Assinatura do título com barra lateral
   =========================== */

  .home-page .why-us{
    padding: 80px 0;
    background: var(--white); /* mantém igual */
  }

  /* Assinatura visual do WHY-US: título com barra lateral */
  .home-page .why-us .section-title{
    display: inline-block;
    position: relative;
    padding-left: 18px;
  }

  /* Barra dourada */
  .home-page .why-us .section-title::before{
    content:'';
    position:absolute;
    left:0;
    top: 12px;
    width: 6px;
    height: 28px;
    border-radius: 6px;
    background: var(--destaque);
  }

  /* Remove a linha decorativa só no WHY-US (pra diferenciar) */
  .home-page .why-us .decorative-line{
    display: none;
  }

  /* Grid igual ao das áreas */
  .home-page .features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* igual areas */
    gap: 22px;                                                   /* igual areas */
    margin-top: 35px;
  }

  /* Feature vira card (clonado do .area-card) */
  .home-page .feature{
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    border: 1px solid rgba(12,21,36,0.06);
    border-top: 4px solid var(--destaque); /* top dourado igual */
  }

  /* Hover igual */
  .home-page .feature:hover{
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
  }

  /* Ícone igual ao das áreas */
  .home-page .feature i{
    font-size: 2.8rem;
    color: var(--destaque);
    margin-bottom: 16px;
  }

  .home-page .feature h3{
    color: var(--primario);
    margin-bottom: 10px;
  }

  .home-page .feature p{
    color: var(--texto);
    margin: 0;
  }

  /* Mobile: barra do título ajusta */
  @media (max-width: 768px){
    .home-page .why-us .section-title::before{
      top: 10px;
      height: 24px;
    }
  }

  /* ===========================
     CTA (layout/visual da seção)
     Botões = components/buttons.css
     =========================== */
  
  .home-page .cta-section{
    background: var(--degrade-primario);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .home-page .cta-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(208, 155, 77, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .home-page .cta-section .container{
    position: relative;
    z-index: 2;
  }
  
  .home-page .cta-section h2{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--destaque);
  }
  
  .home-page .cta-section p{
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 auto 40px;
    max-width: 600px;
  }
  
  .home-page .cta-buttons{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Responsivo (layout/tamanho apenas) */
  @media (max-width: 768px){
    .home-page .cta-buttons{
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .home-page .cta-section .btn{
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  
    .home-page .cta-section h2{ font-size: 2rem; }
    .home-page .cta-section p{ font-size: 1.1rem; }
  
    /* Ajuste da barra do título no mobile (opcional, mas ajuda) */
    .home-page .why-us .section-title::before{
      top: 10px;
      height: 24px;
    }
  }
  
  @media (max-width: 480px){
    .home-page .cta-section h2{ font-size: 1.8rem; }
    .home-page .cta-section p{ font-size: 1rem; }
  }
  
  /* ===========================
     REVIEWS (ELFSIGHT) - SECTION COMPLETA
     =========================== */
  
  .home-page .reviews-section{
    padding: 44px 0;              /* compacto (antes estava gigante) */
    background: #E5E7EB;          /* cinza sólido */
    scroll-margin-top: 90px;      /* caso use âncora */
  }
  
  .home-page .reviews-section .section-title{
    color: #0C1524;
    margin-bottom: 6px;
    text-align: center;
  }
  
  .home-page .reviews-section .decorative-line{
    margin: 0 auto;
  }
  
  .home-page .reviews-section .section-subtitle{
    max-width: 520px;
    margin: 8px auto 0;
    text-align: center;
    color: rgba(12, 21, 36, 0.78);
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Wrapper que “abraça” o widget */
  .home-page .reviews-wrap{
    margin-top: 16px;
    border-radius: 16px;
    padding: 14px 48px;   /* <<< AQUI aumenta pros lados */
  
    /* Card clean */
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(12, 21, 36, 0.10);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  
    /* FIX: setas do slider não saem pra fora */
    position: relative;
    overflow: hidden;
  }
  
  /* Responsivo: menos “respiro” no mobile */
  @media (max-width: 768px){
    .home-page .reviews-section{
      padding: 32px 0;
    }
  
    .home-page .reviews-wrap{
      margin-top: 12px;
      padding: 10px;
      border-radius: 14px;
    }
  
    .home-page .reviews-section .section-subtitle{
      font-size: 14px;
    }
  }
  
  .home-page .reviews-section .container{
    max-width: 1280px;   /* padrão costuma ser 1140–1200 */
  }
  
  /* Desktop: NÃO quebrar linha */
  @media (min-width: 992px){
    .home-page .hero h1,
    .home-page .hero p{
      white-space: nowrap;
    }
  }
  