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

    :root {
      --primary: #79543a;
      --primary-light: #8d6548;
      --primary-dark: #5e3f2a;
      --secondary: #f6f0e8;
      --secondary-dark: #ece3d7;
      --accent: #6cc6e4;
      --accent-light: #e0f4fa;
      --dark: #1a1410;
      --text: #2c2420;
      --text-light: #6b5d54;
      --white: #ffffff;
      --border: #e0d6ca;
      --shadow: rgba(121, 84, 58, 0.08);
      --shadow-md: rgba(121, 84, 58, 0.12);
      --radius: 16px;
      --radius-sm: 10px;
      --radius-xs: 6px;
      --whatsapp: #25D366;
      --font-display: 'Josefin Sans', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --font-cursive: 'Allura', cursive;
      --max-width: 1120px;
      --gutter: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding-inline: var(--gutter);
    }

    /* ============ SVG ICONS ============ */
    .svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

    /* ============ HEADER ============ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }

    .site-header.scrolled {
      box-shadow: 0 2px 24px var(--shadow);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding-inline: var(--gutter);
    }

    .header-logo {
      height: 48px;
      width: auto;
    }

    .header-logo-text {
      font-family: var(--font-cursive);
      font-size: 28px;
      color: var(--primary);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }

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

    .header-cta {
      padding: 10px 24px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .header-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 1px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 24px var(--gutter);
      box-shadow: 0 8px 32px var(--shadow);
      z-index: 99;
    }

    .mobile-menu.open { display: block; }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu a:last-child { border-bottom: none; }

    .mobile-menu-cta {
      display: block;
      margin-top: 16px;
      padding: 14px 24px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      text-align: center;
    }

    /* ============ HERO ============ */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 50%, var(--secondary) 100%);
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -120px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
      border-radius: 50%;
      opacity: 0.5;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--secondary-dark) 0%, transparent 70%);
      border-radius: 50%;
      opacity: 0.6;
      pointer-events: none;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: 56px;
      position: relative;
      z-index: 1;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 20px;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(121, 84, 58, 0.2);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      background: var(--secondary);
    }

    .hero-proof {
      display: flex;
      gap: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .proof-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .proof-number {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }

    .proof-label {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 0.02em;
    }

    .hero-image-wrap {
      flex-shrink: 0;
      width: 380px;
      height: 460px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: var(--secondary-dark);
      box-shadow: 0 24px 48px var(--shadow-md);
    }

    .hero-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--text-light);
      background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    }

    /* ============ TRUST LOGOS ============ */
    .trust-strip {
      padding: 32px 0;
      background: var(--secondary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .trust-item {
      padding: 8px 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-light);
    }

    /* ============ SERVICES ============ */
    .services {
      padding: 96px 0;
    }

    .section-eyebrow {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 48px;
      line-height: 1.2;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .service-card:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 32px var(--shadow);
      transform: translateY(-4px);
    }

    .service-card.featured {
      grid-column: span 2;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
      border-color: var(--primary);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--secondary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
      stroke: var(--primary);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--dark);
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials {
      padding: 96px 0;
      background: var(--secondary);
      position: relative;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
      border-radius: 50%;
      opacity: 0.4;
      pointer-events: none;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: box-shadow 0.2s;
    }

    .testimonial-card:hover {
      box-shadow: 0 8px 32px var(--shadow);
    }

    .testimonial-stars {
      color: #E8A838;
      font-size: 16px;
      letter-spacing: 3px;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      font-style: italic;
      flex: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      font-family: var(--font-display);
      flex-shrink: 0;
    }

    .author-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
    }

    .author-role {
      font-size: 12px;
      color: var(--text-light);
    }

    /* ============ PROCESS ============ */
    .process {
      padding: 96px 0;
    }

    .steps-row {
      display: flex;
      gap: 20px;
    }

    .step-card {
      flex: 1;
      text-align: center;
      padding: 32px 20px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      position: relative;
    }

    .step-number {
      width: 52px;
      height: 52px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin: 0 auto 20px;
    }

    .step-card h3 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* ============ CTA MID ============ */
    .cta-mid {
      padding: 72px 0;
      background: var(--primary);
      text-align: center;
    }

    .cta-mid h2 {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.5vw, 34px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .cta-mid p {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: var(--white);
      color: var(--primary);
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    /* ============ ABOUT ============ */
    .about {
      padding: 96px 0;
      background: var(--secondary);
      position: relative;
    }

    .about::before {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -60px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
      border-radius: 50%;
      opacity: 0.35;
      pointer-events: none;
    }

    .about-inner {
      display: flex;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-image-wrap {
      flex-shrink: 0;
      width: 320px;
      height: 400px;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--secondary-dark);
      box-shadow: 0 16px 40px var(--shadow-md);
    }

    .about-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    .about-content h2 {
      font-family: var(--font-cursive);
      font-size: 42px;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .credentials-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .credential-tag {
      padding: 8px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-light);
    }

    /* ============ FAQ ============ */
    .faq {
      padding: 96px 0;
    }

    .faq .section-eyebrow,
    .faq .section-title {
      text-align: center;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item:hover { border-color: var(--primary); }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: var(--font-body);
    }

    .faq-chevron {
      font-size: 20px;
      color: var(--text-light);
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.3s ease;
    }

    .faq-answer-inner {
      overflow: hidden;
      padding-inline: 24px;
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-item.open .faq-answer-inner { padding-bottom: 20px; }

    /* ============ CTA FINAL ============ */
    .cta-final {
      padding: 96px 0;
      text-align: center;
      background: var(--secondary);
    }

    .cta-final h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .cta-final p {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 32px;
    }

    .cta-final-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============ FOOTER ============ */
    .site-footer {
      padding: 56px 0 32px;
      background: var(--dark);
      color: rgba(255,255,255,0.7);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }

    .footer-brand h3 {
      font-family: var(--font-cursive);
      font-size: 32px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: background 0.2s;
    }

    .footer-social a:hover { background: rgba(255,255,255,0.2); }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a, .footer-col span {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-disclaimer {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      max-width: 600px;
      line-height: 1.5;
      margin-top: 16px;
    }

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

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

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    /* ============ ANIMATIONS ============ */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 900px) {
      .hero-inner {
        flex-direction: column;
        text-align: center;
      }
      .hero-sub { margin-inline: auto; }
      .hero-ctas { justify-content: center; }
      .hero-proof { justify-content: center; }
      .hero-image-wrap {
        width: 100%;
        max-width: 400px;
        height: 340px;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .service-card.featured { grid-column: span 1; }
      .steps-row { flex-direction: column; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .about-inner {
        flex-direction: column;
        text-align: center;
      }
      .about-image-wrap {
        width: 100%;
        max-width: 360px;
        height: 320px;
      }
      .credentials-list { justify-content: center; }
      .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-social { justify-content: center; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    @media (max-width: 640px) {
      :root { --gutter: 16px; }
      .nav-links { display: none; }
      .header-cta.desktop { display: none; }
      .hamburger { display: flex; }
      .hero { padding-top: 100px; padding-bottom: 56px; }
      .hero-proof { flex-direction: column; gap: 16px; align-items: center; }
      .services, .testimonials, .about, .cta-final { padding: 64px 0; }
      .process, .faq { padding: 64px 0; }
      .contato-grid { grid-template-columns: 1fr; }
    }

    /* ============ MULTI-PAGE ============ */
    .nav-links a.active {
      color: var(--primary);
      font-weight: 600;
    }

    .page-hero {
      padding: 140px 0 64px;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 50%, var(--secondary) 100%);
      text-align: center;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }
    .page-hero-sub {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-light);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .section-cta {
      text-align: center;
      margin-top: 40px;
    }

    a.service-card {
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    a.service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px var(--shadow-md);
    }

    .services-full {
      padding-top: 0;
    }

    .about-page {
      padding-top: 140px;
    }

    .contato-section {
      padding: 80px 0;
    }
    .contato-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .contato-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 32px;
      text-align: center;
    }
    .contato-card .service-icon {
      margin: 0 auto 20px;
    }
    .contato-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .contato-card p {
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .contato-note {
      font-size: 13px;
      color: var(--text-light);
      font-style: italic;
    }

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