.section-padding30 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.about-padding {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.mb-70 {
  margin-bottom: 35px !important;
}

/* Corrige o espaçamento da seção Sobre nós */
.about-low-area {
  padding-top: 60px !important;   /* reduz o espaço superior */
  padding-bottom: 60px !important; /* mantém harmonia */
  margin-top: 0 !important;       /* evita sobreposição ao header */
  position: relative;
  z-index: 1; /* garante que fique abaixo do header */
}

/* Ajusta imagens da seção para não "vazar" */
.about-low-area .about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

/* Garante que o título não seja cortado pelo header fixo */
section, 
.about-low-area,
.legal-practice-area,
.teams-area,
.contact-area {
  scroll-margin-top: 100px; /* ajuste conforme a altura do header */
}

/* Ajusta o espaçamento antes dos títulos das seções */
.section-tittle {
  margin-top: 60px;   /* distância extra acima do título */
}

.section-tittle h2 {
  margin-bottom: 40px; /* distância entre o título e o conteúdo */
}

/* Seções principais com mais respiro */
.about-low-area,
.legal-practice-area,
.teams-area,
.contact-area {
  padding-top: 100px;   /* aumenta o espaço antes do título */
  padding-bottom: 80px; /* mantém espaço embaixo */
}

/* Links do menu */
#navigation li a {
  color: #000 !important;   /* preto */
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Hover dos links do menu */
#navigation li a:hover {
  color: #333 !important;   /* cinza escuro para contraste */
}

/* Botão Fale Conosco */
.header-btn a {
  background: #677a6f;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.header-btn a:hover {
  background: #4e5e54;
  transform: translateY(-1px);
}

[data-background] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-active .single-slider {
  height: 100vh; /* ocupa tela cheia, pode ajustar */
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

/* remove margin extra do owl */
.owl-carousel .owl-stage-outer {
  padding: 0 !important;
  margin: 0 !important;
}

/* esconder setas se não usar nav:true */
.owl-nav {
  display: none !important;
}

/* Posiciona setas nas laterais */
.slider-area .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* evita bloquear cliques no slide */
  padding: 0 20px; /* margem lateral */
}

.slider-area .owl-nav button {
  background: rgba(0,0,0,0.5);
  color: #fff !important;
  border: none;
  font-size: 28px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto; /* botão clicável */
  transition: background 0.3s ease;
}

.slider-area .owl-nav button:hover {
  background: rgba(0,0,0,0.8);
}

/* Top Bar */
.top-bar {
  background-color: #556b2f; /* verde musgo escuro */
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
}

.top-bar .contact-info span {
  margin-right: 20px;
  color: #fff;
}

.top-bar .contact-info a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.top-bar .contact-info a:hover {
  text-decoration: underline;
}

.top-bar .social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: #dcdcdc;
}

/* Header ajustado */

/* Container relativo para a posição da logo */
.header-area .container-fluid {
  position: relative;
}

.logo .main-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Links do menu ajustados para o header mais fino */
#navigation li a {
  padding: 10px 15px;  /* menos altura */
  font-weight: 600;
  color: #000 !important;
}

#navigation li a:hover {
  color: #333 !important;
}

.hero__caption h1 {
  text-transform: none !important;
}

/* Ajusta o texto do hero para alinhar com o logo */
/* Remove centralização padrão do container dentro do slider */
.slider-area .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Faz o texto começar mais à esquerda */
.hero__caption {
  margin-left: 215px;   /* antes estava 120px → empurra mais pra direita */
  text-align: left;
  max-width: 700px;
}

.hero__caption h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero__caption .subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
}

.practice-img {
  width: 100%;
  height: 220px; /* altura padrão para todos os frames */
  overflow: hidden;
  position: relative;
  border-radius: 8px; /* opcional */
}

.practice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* corta e ajusta sem distorcer */
  border-radius: 8px; /* opcional, igual ao container */
}

/* Fundo do footer em azul */
.footer-bg {
  background-color: #677a6f !important; /* azul escuro elegante */
  color: #fff; /* texto branco para contraste */
}

/* Ajustar textos do footer */
.footer-area p,
.footer-area a,
.footer-area h4 {
  color: #fff !important;
}

.team-img {
  width: 100%;
  aspect-ratio: 3 / 4; /* todas no mesmo formato retrato */
  overflow: hidden;
  border-radius: 12px; /* cantos arredondados */
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* preenche o container */
  object-position: center; /* centraliza */
  display: block;
}

/* Overlay escondido */
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.8); /* azul escuro translúcido */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 14px;
  line-height: 1.4;
}

/* Corrige o menu */
/* ===== MENU PROFISSIONAL ===== */
.main-menu nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-menu nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2c332e;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
  line-height: 1;
}

/* Hover elegante */
.main-menu nav ul li a:hover {
  color: #000;
}

/* Linha inferior sutil */
.main-menu nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #677a6f;
  transition: width 0.25s ease;
}

.main-menu nav ul li a:hover::after {
  width: 100%;
}

.team-img {
  position: relative;
  overflow: hidden; /* evita que o texto ultrapasse */
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(103, 122, 111, 0.9); /* verde translúcido */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}

.team-img:hover .team-overlay {
  opacity: 1;
}

/* Seção Sobre Nós com imagem de fundo */
.about-low-area {
  position: relative;
  background: url('assets/img/about/escritorio.png') no-repeat center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff; /* deixa todo texto branco por padrão */
}

/* Overlay translúcido para melhorar leitura */
.about-low-area::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* preto com 55% transparência */
  z-index: 1;
}

/* Garante que o conteúdo fique acima do overlay */
.about-low-area .container {
  position: relative;
  z-index: 2;
}

/* Ajusta os títulos e parágrafos */
.about-low-area h2 {
  color: #fff;            /* branco puro */
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8); /* sombra para legibilidade */
}

.about-low-area p {
  color: #f0f0f0;         /* branco suave */
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Garante que todo texto da seção Sobre nós fique branco */
.about-low-area,
.about-low-area h2,
.about-low-area p,
.about-low-area span,
.about-low-area li,
.about-low-area a {
  color: #ffffff !important;
}

/* --- Ajustes para telas menores --- */
/* Mobile ajustes até 991px */
/* Botão flutuante somente no mobile */
@media (max-width: 991px) {
  .header-btn {
    display: none !important; /* esconde no header */
  }

  .floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }

  .floating-btn a {
    display: flex;
    align-items: center;
    gap: 8px; /* espaço entre ícone e texto */
    padding: 12px 18px;
    background: #25d366; /* verde WhatsApp */
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px; /* formato de pílula */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
  }

  .floating-btn a:hover {
    background: #1ebe5b;
    transform: scale(1.05);
  }

  .floating-btn i {
    font-size: 20px;
  }
}

/* --- Mobile menu (hamburger) --- */
.slicknav_menu {
  background: #677a6f;   /* cor de fundo do menu mobile */
}

.slicknav_menu .slicknav_menutxt {
  display: none; /* esconde o texto padrão */
}

.slicknav_menu .slicknav_icon-bar {
  background: #fff; /* cor dos 3 tracinhos */
}

.slicknav_nav {
  background: #677a6f;
  text-align: center;
}

.slicknav_nav a {
  color: #fff !important;
  font-weight: 600;
  padding: 10px;
}

.slicknav_nav a:hover {
  background: #556b2f;
}

/* Ajustes para telas menores (tablets e celulares) */
@media (max-width: 991px) {
  .hero__caption {
    margin-left: 0;         /* remove o deslocamento fixo */
    text-align: center;     /* centraliza o texto no mobile */
    padding: 0 15px;        /* respiro lateral */
  }

  .hero__caption h1 {
    font-size: 28px;        /* reduz o tamanho do título */
    line-height: 1.3;
  }

  .hero__caption .subtitle {
    font-size: 16px;        /* subtítulo menor */
    line-height: 1.4;
  }

  .header-area .main-menu {
      margin-left: 180px; /* espaço visual do logo flutuante */

  }

  .mobile_menu {
    display: block !important; /* força menu mobile */
  }
}
/* Ajuste das imagens da equipe no mobile */
@media (max-width: 768px) {
  .team-img {
    aspect-ratio: 1 / 1;   /* quadrada no mobile */
    max-width: 220px;      /* limita largura */
    margin: 0 auto 20px;   /* centraliza e dá espaço embaixo */
  }

  .team-img img {
    object-fit: cover;
    border-radius: 10px;
  }

  .single-teams {
    margin-bottom: 30px; /* mais respiro entre os cards */
  }

  .team-caption h4 {
    font-size: 16px; /* título menor */
  }

  .team-caption span {
    font-size: 14px;
  }
}

/* Melhor espaçamento geral */
@media (max-width: 768px) {

    h1, h2, h3, h4 {
        line-height: 1.3;
    }

    .hero__caption h1 {
        font-size: 28px !important;
        line-height: 1.2;
        text-align: center;
    }

    .hero__caption .subtitle {
        font-size: 16px !important;
        text-align: center;
    }

    .section-tittle h2 {
        font-size: 26px;
    }

    .single-practice img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Equipe */
    .team-img img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
    }

    /* Botão flutuante fixo e elegante */
    .floating-btn {
        position: fixed;
        right: 15px;
        bottom: 20px;
        z-index: 9999;
    }

    .floating-btn a {
        background: #25D366;
        color: white;
        padding: 12px 18px;
        border-radius: 50px;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
    }

    .floating-btn a i {
        font-size: 20px;
    }
}

.single-teams {
    margin-bottom: 40px;
}

.team-caption h4 {
    font-size: 20px;
}

.team-caption span {
    color: #666;
}

.team-overlay {
    font-size: 14px;
    line-height: 1.4;
}

/* HERO – estilo premium */
.hero__caption {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    padding-left: 5%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 300;
    color: #f1f1f1;
    margin-top: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.hero-btn {
    margin-top: 35px;
    padding: 14px 34px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    color: #2e4238;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #e5e5e5;
    color: #1d2b25;
}

/* Overlay universal */
/* ===== HERO PROFISSIONAL ===== */

.single-slider {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Overlay forte e elegante */
.single-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); 
    /* Aumentei para 0.55 – é o padrão usado em sites premium */
    z-index: 1;
}

.hero__caption {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
    margin-top: 80px;
}

/* Título elegante e legível */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Subtítulo limpo */
.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 35px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* Botão premium */
.hero-btn {
    padding: 14px 34px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    color: #2a3b33;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background: #e6e6e6;
    color: #1d2922;
}

/* Versão mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero__caption {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}
.hero-title {
    color: #ffffff !important;
}

/* ----- SOBRE NÓS PREMIUM ----- */
.sobre-premium {
    padding: 80px 0;
}

.sobre-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.sobre-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
}

.sobre-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.sobre-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.sobre-list i {
    color: #2e5f50;
    margin-right: 10px;
    font-size: 20px;
}

.sobre-btn {
    background: #2e5f50;
    padding: 12px 28px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.sobre-btn:hover {
    background: #244c3f;
}

.sobre-img-wrapper {
    position: relative;
}

.sobre-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* ---- ÁREAS DE ATUAÇÃO – VERSÃO PREMIUM ---- */
/* --- SEÇÃO ÁREAS DE ATUAÇÃO --- */
.areas-atuacao {
    padding: 80px 0;
    background: #f8f9fb; /* fundo diferente, elegante e neutro */
}

/* Cards */
.area-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%; /* <--- garante que todos os cards tenham altura igual */
    display: flex;
    flex-direction: column; /* imagem em cima + conteúdo embaixo */
}

/* Efeito hover */
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

/* Wrapper da imagem */
.area-img-wrapper {
    width: 100%;
    height: 220px;  /* <--- padroniza o tamanho das imagens */
    overflow: hidden;
}

/* Imagem */
.area-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conteúdo */
.area-content {
    padding: 22px;
    flex: 1; /* <--- faz o texto ocupar o mesmo espaço em todos os cards */
    display: flex;
    flex-direction: column;
}

/* Título */
.area-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2e5f50;
}

/* Texto */
.area-content p {
    font-size: 15.5px;
    line-height: 1.58;
    color: #444;
    margin-bottom: 0;
}

.divider-curve svg {
    display: block;
    width: 100%;
    margin-bottom: -5px; /* remove espaço entre SVG e próxima seção */
}

/* ---- EQUIPE ---- */

.equipe-section {
    background: #ffffff;
}

.equipe-title {
    font-size: 32px;
    font-weight: 700;
    color: #2e3d49;
    margin-bottom: 15px;
}

.equipe-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 640px;
    margin: 0 auto 40px;
}

.equipe-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.equipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.equipe-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.equipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-content {
    padding: 22px;
}

.equipe-name {
    font-size: 21px;
    font-weight: 700;
    color: #1f1f1f;
}

.equipe-role {
    display: block;
    font-size: 15px;
    color: #2e5f50;
    margin-bottom: 12px;
    font-weight: 600;
}

.equipe-description {
    font-size: 15.5px;
    color: #444;
    line-height: 1.55;
}

/* Ajustar início da seção de atuação para ficar mais próximo do divisor */
/* Remove espaço exagerado no topo da seção de atuação */
#atuacao {
    padding-top: 10px !important;
}

/* Remove margens automáticas aplicadas pelo template */
#atuacao .mb-70 {
    margin-bottom: 40px !important;
    margin-top: 0 !important;
}

/* Ajuste fino no título */
#atuacao .atuacao-title {
    margin-top: 10px !important; /* antes era 40–80px */
}

/* Ajustar título para ficar mais elegante */
.atuacao-title {
    font-size: 32px;
    font-weight: 700;
    color: #2e3d49;
    margin-bottom: 15px;
}

/* Subtítulo */
.atuacao-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 45px;
}
#atuacao .row + .row {
    margin-top: 60px !important;
}
/* Ajuste do bloco de título da seção de atuação */
#atuacao .mb-70 {
    margin-bottom: 35px !important; /* Era 70px, agora mais elegante */
}

/* Ajuste do título */
#atuacao .atuacao-title {
    margin-bottom: 10px !important; /* Antes estava muito espaçado */
}

/* Ajuste do subtítulo */
#atuacao .atuacao-subtitle {
    margin-top: 0 !important;
    margin-bottom: 25px !important; /* margem perfeita para UX */
}
/* Remove o padding interno que empurra os cards para baixo */
#atuacao .row.justify-content-center:first-of-type {
    margin-top: 0px !important; /* antes estava ~60px */
}
.reviews-strip {
    background: #f8f9fb;
    padding: 25px 0;
    border-top: 1px solid #e4e5e7;
    border-bottom: 1px solid #e4e5e7;
}

.reviews-flex {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.review-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    font-size: 15px;
    color: #444;
}

.review-item .stars {
    font-size: 18px;
    color: #f4b400; /* amarelo Google */
    margin-bottom: 5px;
}

.review-item .author {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #777;
}

.client-reviews {
    background-color: #f8f9fb;
    padding: 40px 0;
    text-align: center;
}

.reviews-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

.reviews-slider {
    position: relative;
    min-height: 250px;   /* define a altura mínima */
    padding-bottom: 20px;
}

.review-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
    position: absolute;
    width: 100%;
    top: 0;
}

.review-group.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 50%;
}

@media(max-width: 768px) {
    .review-group {
        flex-direction: column;
        gap: 15px;
    }

    .review-card {
        width: 100%;
    }
}

.review-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-author {
    font-size: 13px;
    color: #555;
}

/* Bullets */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s;
}

.slider-dots .active {
    background: #333;
}

/* Contêiner do slider */
.reviews-slider {
    max-width: 850px;      /* controla largura máxima do bloco inteiro */
    margin: 0 auto;
}

/* Grupo com 2 cards lado a lado */
.review-group {
    display: none;
    justify-content: center;
    gap: 25px;
    padding: 10px;
}

.review-group.active {
    display: flex;
}

/* Cada card */
.review-card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    flex: 1;                       /* divide espaço igualmente */
    max-width: 360px;              /* impede ficar gigante */
    min-width: 260px;
}

/* Ajuste do cabeçalho do card */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.review-date {
    font-size: 13px;
    color: #777;
}

/* Estrelas e texto */
.stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 8px;
}

.review-text {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .review-group {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 90%;
        max-width: 400px;
    }
}
