/* ============================================
   ALMAS ADVOCACIA — CSS COMPLETO
   ============================================ */

/* ---------- RESET & VARIÁVEIS ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --azul:      #15213D;
  --azul-med:  #1e2f57;
  --ouro:      #CBA048;
  --ouro-clr:  #d4ac5a;
  --cinza:     #A8B0B7;
  --branco:    #ffffff;
  --off-white: #F5F4F0;
  --texto:     #2c2c2c;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', sans-serif;

  --radius: 12px;
  --shadow: 0 4px 24px rgba(21,33,61,.13);
  --transition: .28s ease;
  --header-height: 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--off-white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ---------- SEÇÕES GENÉRICAS ---------- */
.section { padding: 6rem 0; }
.section--dark {
  background: var(--azul);
  color: var(--branco);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: .75rem;
}
.section__eyebrow--light { color: var(--ouro); }

.section__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--azul);
  margin-bottom: 1.25rem;
}
.section__title em {
  font-style: italic;
  color: var(--ouro);
}
.section__title--light { color: var(--branco); }

.section__sub  { color: var(--cinza); margin-bottom: 3rem; }
.section__sub--light { color: var(--cinza); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--ouro);
  color: var(--azul);
  border-color: var(--ouro);
}
.btn--primary:hover {
  background: var(--ouro-clr);
  border-color: var(--ouro-clr);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--branco);
}

.btn--nav {
  background: var(--ouro);
  color: var(--azul);
  padding: .55rem 1.3rem;
  font-size: .85rem;
}
.btn--nav:hover { background: var(--ouro-clr); }

.btn--social {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn--social:hover {
  background: var(--azul);
  color: var(--branco);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--azul);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
}
.logo-almas { color: var(--branco); }
.logo-adv   { color: var(--ouro); }

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header__nav a:hover { color: var(--ouro); }

/* Menu toggle (mobile) */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--transition);
}
.header__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BANNER / HERO
   ============================================ */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--azul);
  margin-top: var(--header-height);
}

.banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero__content {
  padding-top: 5rem;
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: .75rem;
}

.hero__advogada {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
  padding-left: 3px;
  border-left: 3px solid var(--ouro);
  padding-left: .75rem;
}
.hero__advogada strong {
  color: var(--branco);
  font-style: normal;
  font-weight: 700;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--ouro);
}

.hero__subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Desktop: imagem no tamanho original, centralizada — sem redimensionamento */
@media (min-width: 769px) {
  .banner { display: flex; justify-content: center; }
  .banner__img { width: auto; max-width: none; height: auto; flex-shrink: 0; }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__texto p {
  color: #555;
  margin-bottom: 1rem;
}
.sobre__texto strong { color: var(--azul); }

.sobre__diferenciais {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.sobre__diferenciais li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: #444;
}
.sobre__diferenciais i { color: var(--ouro); font-size: 1rem; }

.sobre__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sobre__badge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.badge-item {
  background: var(--azul);
  color: var(--branco);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.badge-item--gold { background: var(--ouro); color: var(--azul); }
.badge-item--gold i { font-size: 1.8rem; color: var(--azul); }

.badge-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ouro);
  line-height: 1;
}
.badge-item--gold .badge-num { color: var(--azul); }
.badge-label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.sobre__oab {
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--cinza);
  text-transform: uppercase;
}

/* ============================================
   ÁREAS DE ATUAÇÃO — CARDS
   ============================================ */
.cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ouro);
}

.card--destaque {
  grid-column: span 2;
  background: rgba(203,160,72,.12);
  border-color: rgba(203,160,72,.4);
}

.card__icon {
  width: 48px; height: 48px;
  background: var(--ouro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card__icon i { color: var(--azul); font-size: 1.1rem; }

.card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--branco);
  margin-bottom: .5rem;
}
.card p { color: var(--cinza); font-size: .93rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ouro);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.card__link:hover { gap: .7rem; }

/* ============================================
   ÁREA DESTAQUE
   ============================================ */
.destaque__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.destaque__texto p { color: #555; margin-bottom: 1.2rem; }

.destaque__lista {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: .5rem;
}
.destaque__lista li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  color: #444;
  font-size: .95rem;
}
.destaque__lista i { color: var(--ouro); font-size: .8rem; }

.destaque__visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.destaque__card-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--azul);
  color: var(--branco);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--ouro);
}
.destaque__card-stat i {
  font-size: 1.6rem;
  color: var(--ouro);
  flex-shrink: 0;
}
.destaque__card-stat p { line-height: 1.4; font-size: .92rem; }
.destaque__card-stat strong { color: var(--ouro); }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depo__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.depo__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition);
}
.depo__card:hover { border-color: var(--ouro); }

.depo__card--destaque {
  background: rgba(203,160,72,.1);
  border-color: rgba(203,160,72,.4);
}

.depo__stars i { color: var(--ouro); font-size: .85rem; }

.depo__card p {
  color: rgba(255,255,255,.8);
  font-size: .93rem;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.depo__autor {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.depo__avatar {
  width: 40px; height: 40px;
  background: var(--ouro);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.depo__autor strong { display: block; color: var(--branco); font-size: .9rem; }
.depo__autor span   { color: var(--cinza); font-size: .8rem; }

/* ============================================
   REDES SOCIAIS
   ============================================ */
.redes { background: var(--off-white); text-align: center; }
.redes__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.redes__inner p { color: #666; }
.redes__links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================
   CONTATO
   ============================================ */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato__sub { color: var(--cinza); margin-bottom: 2rem; }

.contato__lista {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contato__lista li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: rgba(255,255,255,.8);
  font-size: .93rem;
}
.contato__lista i {
  color: var(--ouro);
  font-size: 1.1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.contato__lista a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.contato__lista a:hover { color: var(--ouro); }

/* Formulário */
.contato__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form__group { display: flex; flex-direction: column; gap: .4rem; }
.form__group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: .93rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,.35); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--ouro);
}
.form__group select option { background: var(--azul); }
.form__group textarea { resize: vertical; min-height: 110px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0e1828;
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand .logo-almas,
.footer__brand .logo-adv { font-family: var(--font-title); font-size: 1.5rem; }
.footer__brand p { font-size: .83rem; margin-top: .5rem; color: rgba(255,255,255,.55); }

.footer__links h4,
.footer__contato h4,
.footer__social h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1rem;
}

.footer__links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--ouro); }

.footer__contato p {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  margin-bottom: .6rem;
}
.footer__contato i { color: var(--ouro); }

.footer__social {
  display: flex;
  flex-direction: column;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: .5rem;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--ouro); color: var(--azul); }

.footer__bottom {
  padding: 1.3rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.7);
}

/* ============================================
   RESPONSIVO — TABLET (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
  .sobre__grid,
  .destaque__grid,
  .contato__grid { grid-template-columns: 1fr; gap: 3rem; }

  .cards__grid { grid-template-columns: 1fr 1fr; }
  .card--destaque { grid-column: span 2; }

  .depo__grid { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .sobre__badge { grid-template-columns: repeat(3,1fr); }
  .sobre__badge-wrap { align-items: flex-start; }
}

/* ============================================
   RESPONSIVO — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Header */
  .header__toggle { display: flex; }
  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--azul);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    flex-direction: column;
  }
  .header__nav.open { right: 0; box-shadow: -4px 0 30px rgba(0,0,0,.4); }
  .header__nav ul { flex-direction: column; gap: 1.5rem; }
  .header__nav a { font-size: 1.1rem; }

  /* Hero mobile: conteúdo abaixo da imagem */
  .hero__overlay {
    position: static;
    background: var(--azul);
    padding: 2.5rem 0 3rem;
  }
  .hero__content { padding-top: 0; max-width: 100%; }
  .hero__title { font-size: clamp(2rem,8vw,3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Cards */
  .cards__grid { grid-template-columns: 1fr; }
  .card--destaque { grid-column: span 1; }

  /* Depoimentos */
  .depo__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Sobre badge */
  .sobre__badge { grid-template-columns: 1fr 1fr; }
}

