  :root {
    --vinho: #5C1A2E;
    --vinho-light: #7A2840;
    --terracota: #B05A3A;
    --terracota-light: #C97050;
    --creme: #F5EFE6;
    --creme-dark: #EAE0D0;
    --dourado: #C4A15A;
    --texto: #2C1810;
    --texto-light: #6B4C3B;
    --branco: #FDFAF6;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--branco);
    color: var(--texto);
    overflow-x: hidden;
  }

  /* NAVBAR */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 161, 90, 0.2);
    transition: all 0.3s;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vinho);
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--dourado);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--texto-light);
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--vinho); }

  .nav-cta {
    background: var(--vinho);
    color: var(--creme) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--vinho-light) !important; color: var(--creme) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 80px;
    background: var(--creme);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,90,58,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dourado), transparent);
  }

  .hero-text {
    padding: 6rem 5% 6rem 8%;
    animation: fadeUp 0.9s ease both;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--terracota);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--vinho);
    margin-bottom: 1.2rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--terracota);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--texto-light);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--vinho);
    color: var(--creme);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .btn-primary:hover {
    background: var(--vinho-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(92, 26, 46, 0.25);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vinho);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--vinho);
    padding-bottom: 2px;
    transition: gap 0.2s;
  }

  .btn-secondary:hover { gap: 0.8rem; }

  .hero-location {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--texto-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.7;
  }

  /* HERO - fix mobile photo */
  .hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease both 0.3s;
  }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-visual {
      display: flex !important;
      height: 60vw;
      max-height: 420px;
      padding: 0 6%;
      justify-content: center;
    }
    .hero-card {
      width: 100%;
      max-width: 300px;
    }
    .hero-photo-frame {
      border-radius: 4px 50px 4px 50px;
    }
    .hero-badge-card { display: none; }
    .crp-badge { display: none; }
  }

  .hero-card {
    position: relative;
    width: 380px;
    max-width: 90%;
  }

  .hero-photo-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--vinho) 0%, var(--terracota) 60%, var(--dourado) 100%);
    border-radius: 4px 80px 4px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .hero-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    gap: 1rem;
  }

  .hero-photo-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  .hero-badge-card {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--branco);
    border-left: 3px solid var(--dourado);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  }

  .hero-badge-card p {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-light);
  }

  .hero-badge-card strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--vinho);
    display: block;
    font-weight: 600;
  }

  .crp-badge {
    position: absolute;
    top: 1.5rem;
    right: -1rem;
    background: var(--vinho);
    color: var(--creme);
    padding: 0.6rem 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(92,26,46,0.3);
  }

  /* SECTION STYLES */
  section {
    padding: 6rem 5%;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--terracota);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--vinho);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  /* SOBRE */
  .sobre {
    background: var(--branco);
  }

  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sobre-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--texto-light);
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .sobre-text p strong {
    color: var(--texto);
    font-weight: 500;
  }

  .credenciais {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .credencial-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--texto-light);
  }

  .credencial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dourado);
    flex-shrink: 0;
    margin-top: 6px;
  }

  .sobre-visual {
    position: relative;
  }

  .sobre-quote-block {
    background: var(--creme);
    border-top: 3px solid var(--dourado);
    padding: 3rem;
    position: relative;
  }

  .sobre-quote-block::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--dourado);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: 2rem;
    line-height: 1;
  }

  .sobre-quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--vinho);
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 1px;
    background: var(--creme-dark);
  }

  .stat-item {
    background: var(--branco);
    padding: 1.5rem;
    text-align: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--vinho);
    font-weight: 600;
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-light);
    margin-top: 0.3rem;
    display: block;
  }

  /* SERVIÇOS */
  .servicos {
    background: var(--vinho);
    position: relative;
    overflow: hidden;
  }

  .servicos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
      radial-gradient(circle at 80% 20%, rgba(176,90,58,0.2) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(196,161,90,0.1) 0%, transparent 50%);
    pointer-events: none;
  }

  .servicos .section-label { color: var(--dourado); }
  .servicos .section-label::before { background: var(--dourado); }
  .servicos .section-title { color: var(--creme); }

  .servicos-intro {
    font-size: 1rem;
    color: rgba(245,239,230,0.65);
    max-width: 500px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3.5rem;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
  }

  .servico-card {
    background: rgba(255,255,255,0.04);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .servico-card:hover {
    background: rgba(255,255,255,0.09);
  }

  .servico-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: rgba(196,161,90,0.15);
    font-weight: 600;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
  }

  .servico-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--dourado);
  }

  .servico-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--creme);
    margin-bottom: 0.8rem;
  }

  .servico-card p {
    font-size: 0.85rem;
    color: rgba(245,239,230,0.6);
    line-height: 1.8;
    font-weight: 300;
  }

  .servico-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dourado);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .servico-card:hover .servico-link { opacity: 1; }

  /* COMO FUNCIONA */
  .como {
    background: var(--creme);
    max-width: 100%;
  }

  .como-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .como-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
  }

  .como-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--texto-light);
    font-weight: 300;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, var(--dourado), var(--terracota), var(--dourado));
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--branco);
    border: 2px solid var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--vinho);
    font-weight: 600;
    margin: 0 auto 1.5rem;
  }

  .step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--vinho);
    font-weight: 400;
    margin-bottom: 0.6rem;
  }

  .step p {
    font-size: 0.82rem;
    color: var(--texto-light);
    line-height: 1.7;
    font-weight: 300;
  }

  /* FAQ */
  .faq {
    background: var(--branco);
  }

  .faq-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--creme-dark);
  }

  .faq-item {
    border-bottom: 1px solid var(--creme-dark);
    overflow: hidden;
  }

  .faq-q {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--vinho);
    font-weight: 400;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--terracota); }

  .faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  .faq-a p {
    font-size: 0.92rem;
    color: var(--texto-light);
    line-height: 1.85;
    font-weight: 300;
  }

  /* BLOG */
  .blog {
    background: var(--creme);
  }

  .blog-inner { max-width: 1200px; margin: 0 auto; }

  .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    background: var(--branco);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s;
  }

  .blog-card:hover { transform: translateY(-4px); }

  .blog-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--vinho), var(--terracota));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .blog-card-featured .blog-img {
    aspect-ratio: 4/3;
  }

  .blog-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-cat {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 500;
    margin-bottom: 0.6rem;
  }

  .blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--vinho);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    flex: 1;
  }

  .blog-card-featured h3 {
    font-size: 1.5rem;
  }

  .blog-meta {
    font-size: 0.72rem;
    color: var(--texto-light);
    opacity: 0.6;
    margin-top: auto;
    padding-top: 1rem;
  }

  /* CONTATO */
  .contato {
    background: var(--vinho);
    position: relative;
    overflow: hidden;
  }

  .contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(176,90,58,0.25) 0%, transparent 60%);
    pointer-events: none;
  }

  .contato-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .contato .section-label { color: var(--dourado); }
  .contato .section-label::before { background: var(--dourado); }
  .contato .section-title { color: var(--creme); }

  .contato-text p {
    font-size: 1rem;
    color: rgba(245,239,230,0.65);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .contato-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    color: rgba(245,239,230,0.7);
  }

  .info-row strong { color: var(--creme); }

  .info-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(196,161,90,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dourado);
  }

  .contato-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,239,230,0.5);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    color: var(--creme);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(245,239,230,0.25);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--dourado);
  }

  .form-group select option { background: var(--vinho); }

  .form-group textarea { resize: none; height: 100px; }

  .btn-form {
    width: 100%;
    background: var(--dourado);
    color: var(--vinho);
    border: none;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 0.5rem;
  }

  .btn-form:hover {
    background: #d4b06a;
    transform: translateY(-1px);
  }

  .form-note {
    font-size: 0.72rem;
    color: rgba(245,239,230,0.35);
    text-align: center;
    margin-top: 1rem;
  }

  /* FOOTER */
  footer {
    background: #1A0A10;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--creme);
    font-weight: 400;
  }

  .footer-logo span { color: var(--dourado); }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(245,239,230,0.3);
    letter-spacing: 0.05em;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .footer-social a {
    color: rgba(245,239,230,0.4);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-social a:hover { color: var(--dourado); }

  /* FLOATING WHATSAPP */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float svg { color: white; }

  /* MOBILE GERAL */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-text { padding: 5rem 6% 2rem; }
    .sobre-grid,
    .como-header,
    .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .blog-header { flex-direction: column; align-items: flex-start; }
    footer { flex-direction: column; text-align: center; }
  }

  @media (max-width: 580px) {
    .servicos-grid,
    .steps { grid-template-columns: 1fr; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* DEPOIMENTOS */
  .depoimentos {
    background: var(--creme);
    padding: 6rem 5%;
  }

  .depoimentos-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .depoimento-card {
    background: var(--branco);
    padding: 2rem;
    border-top: 2px solid var(--dourado);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.25s;
  }

  .depoimento-card:hover { transform: translateY(-4px); }

  .depoimento-stars {
    display: flex;
    gap: 3px;
    color: var(--dourado);
    font-size: 0.9rem;
  }

  .depoimento-texto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--vinho);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
  }

  .depoimento-autor {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-light);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid var(--creme-dark);
  }

  @media (max-width: 900px) {
    .depoimentos-grid { grid-template-columns: 1fr; }
  }
