:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2f45;
    --blue: #1565c0;
    --blue-light: #1e88e5;
    --red: #d32f2f;
    --red-light: #ef5350;
    --orange: #e64a19;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --gray-light: #e8ecf0;
    --gray: #8a9bb0;
    --gray-dark: #4a5568;
    --text: #1a2535;
    --wa: #25d366;
    --wa-dark: #128c7e;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.14);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ───── HEADER ───── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
  }

  .logo-text {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
  }

  .logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-dark);
  }

  /* NAV */
  .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }

  .header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
  }

  .header-nav a:hover { color: var(--blue); }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.15s;
  }

  .header-tel:hover { color: var(--blue); }

  .btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--wa);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-wa-header:hover {
    background: var(--wa-dark);
    transform: translateY(-1px);
  }

  .btn-wa-header svg { flex-shrink: 0; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
  }

  /* ───── HERO ───── */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 52px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('LOGO\ DELUXE\ \ \(6\).jpeg') center/cover no-repeat;
    filter: brightness(0.25) saturate(0.6);
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(21,101,192,0.35) 100%);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .hero-content--single {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .hero-left { display: flex; flex-direction: column; }

  .hero-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--red-light);
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .hero-checks {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    background: var(--wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg { display: block; }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--wa);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 18px 32px;
    border-radius: 50px;
    transition: all 0.2s;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  }

  .btn-main:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.35);
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  .hero-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-img-wrap img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4/3;
  }

  .hero-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #1a3a5c, #0d2035);
    border: 2px dashed rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    text-align: center;
  }

  .hero-placeholder svg {
    opacity: 0.3;
  }

  /* ───── TRUST BAR ───── */
  .trust-bar {
    background: var(--off-white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 20px 0;
  }

  .trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
  }

  .trust-item .ti {
    font-size: 22px;
    color: var(--blue);
  }

  /* ───── SECTION COMMONS ───── */
  section { padding: 80px 0; }

  .section-label {
    display: inline-block;
    background: rgba(21,101,192,0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--navy);
  }

  .section-desc {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.7;
    max-width: 560px;
  }

  /* ───── SOBRE NÓS / CONFIANÇA ───── */
  .about-section {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #e8ecf0, #cdd3da);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray);
    font-size: 14px;
    text-align: center;
  }

  .brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
  }

  .brand-pill {
    background: var(--off-white);
    border: 1.5px solid var(--gray-light);
    color: var(--gray-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .diff-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-dark);
    font-weight: 500;
  }

  .diff-dot {
    width: 20px;
    height: 20px;
    background: rgba(21,101,192,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .diff-dot svg { display: block; }

  /* ───── SERVIÇOS ───── */
  .services-section {
    background: var(--off-white);
  }

  .services-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .services-header .section-desc {
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .service-img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
  }

  .service-img-placeholder {
    width: 100%;
    aspect-ratio: 16/8;
    background: linear-gradient(145deg, #e8ecf0, #cdd3da);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
  }

  .service-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    background: rgba(21,101,192,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--blue);
  }

  .service-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .service-body p {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 12px;
    flex: 1;
  }

  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
  }

  .service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-dark);
  }

  .service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-light);
    flex-shrink: 0;
  }

  .btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--wa);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 13px 20px;
    border-radius: 50px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-service:hover {
    background: var(--wa-dark);
    transform: translateY(-1px);
  }

  /* ───── PRODUTOS ───── */
  .products-section {
    background: var(--white);
  }

  .products-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .products-header .section-desc { margin: 0 auto; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .product-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
  }

  .product-card.featured {
    border-color: var(--blue);
    position: relative;
  }

  .featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
  }

  .product-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: #f8f9fb;
  }

  .product-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #e8f0fb, #c9d9f5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
  }

  .product-img-placeholder svg { opacity: 0.5; }

  .product-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
  }

  .product-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    flex: 1;
  }

  .product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
  }

  .product-features li span.check {
    color: var(--wa-dark);
    font-weight: 800;
    font-size: 16px;
  }

  .product-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .product-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    font-family: 'Barlow', sans-serif;
  }

  .btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 13px 20px;
    border-radius: 50px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-product:hover {
    background: var(--blue);
    transform: translateY(-1px);
  }

  /* ───── SOBRE (DOBRA 4) ───── */
  .about2-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .about2-section::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211,47,47,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .about2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .about2-section .section-title {
    color: var(--white);
  }

  .about2-section .section-desc {
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
  }

  /* ───── REVIEWS ───── */
  .reviews-section {
    background: var(--off-white);
    overflow: hidden;
  }

  .reviews-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .reviews-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .reviews-track-wrap::before,
  .reviews-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
  }

  .reviews-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
  }

  .reviews-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
  }

  .reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-reviews 28s linear infinite;
    width: max-content;
  }

  .reviews-track:hover { animation-play-state: paused; }

  @keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .review-card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
  }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 16px;
  }

  .review-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
  }

  .review-date {
    font-size: 12px;
    color: var(--gray);
  }

  .google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-top: 32px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .google-badge:hover {
    border-color: var(--blue-light);
    box-shadow: 0 2px 12px rgba(21,101,192,0.12);
  }

  .reviews-footer {
    text-align: center;
    margin-top: 32px;
  }

  /* ───── POR QUE NÓS ───── */
  .why-section {
    background: var(--white);
  }

  .why-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }

  .why-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: background 0.2s;
  }

  .why-card:hover {
    background: rgba(21,101,192,0.06);
  }

  .why-icon {
    width: 56px;
    height: 56px;
    background: rgba(21,101,192,0.10);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--blue);
  }

  .why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 13px;
    color: var(--gray-dark);
  }

  /* ───── CTA FORTE ───── */
  .cta-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    text-align: center;
    padding: 80px 0;
  }

  .cta-section .section-title {
    color: var(--white);
    margin-bottom: 16px;
  }

  .cta-section .section-desc {
    color: rgba(255,255,255,0.85);
    margin: 0 auto 36px;
    max-width: 520px;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--red);
    font-weight: 800;
    font-size: 15px;
    padding: 18px 32px;
    border-radius: 50px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  }

  .btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 17px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
    text-transform: uppercase;
  }

  .btn-cta-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
  }

  /* ───── FAQ ───── */
  .faq-section {
    background: var(--off-white);
  }

  .faq-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    transition: background 0.15s;
    gap: 12px;
  }

  .faq-question:hover { background: var(--off-white); }

  .faq-question.open { background: var(--off-white); }

  .faq-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(21,101,192,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
    font-size: 14px;
    color: var(--blue);
  }

  .faq-question.open .faq-arrow { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
  }

  .faq-answer.open {
    max-height: 200px;
    padding: 0 24px 20px;
  }

  /* ───── FOOTER ───── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
  }

  .footer-logo-text span { color: var(--red-light); }

  .footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
  }

  .footer-contact-item a {
    color: rgba(255,255,255,0.85);
    transition: color 0.15s;
  }

  .footer-contact-item a:hover { color: var(--white); }

  footer h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
  }

  .footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-hours li {
    font-size: 14px;
    line-height: 1.4;
  }

  .footer-hours .day {
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    display: block;
  }

  .footer-hours .hour {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
  }

  .footer-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-services-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s;
  }

  .footer-services-list li::before {
    content: '→ ';
    color: var(--red-light);
    font-size: 12px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

  /* ───── WHATSAPP FLOAT ───── */
  .wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
  }

  .wa-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37,211,102,0.50);
    transition: all 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
    text-decoration: none;
  }

  .wa-float a:hover {
    background: var(--wa-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55);
    animation: none;
  }

  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.70); }
  }

  /* ───── HERO IMAGE FRAME & BADGE ───── */
  .hero-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.45);
    display: block;
  }

  .hero-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-width: 180px;
  }

  .hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
  }

  .hero-badge strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
  }

  .hero-badge span {
    font-size: 12px;
    color: var(--gray-dark);
  }

  /* ───── QUEM SOMOS / ESPECIALISTAS ───── */
  .about-quem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .diferenciais-card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
  }

  .diferenciais-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .diferenciais-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-dark);
    font-weight: 500;
  }

  .dif-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: rgba(21,101,192,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ───── ICON FONT (simple inline SVG icons) ───── */

  /* ───── RESPONSIVE ───── */
  @media (max-width: 1024px) {
    .header-nav { gap: 18px; }
    .header-nav a { font-size: 13px; }
  }

  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-img-wrap { order: -1; }
    .hero-img-frame { max-width: 380px; margin: 0 auto; }
    .hero-badge { left: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-quem-grid { grid-template-columns: 1fr; gap: 28px; }
    .about2-grid { grid-template-columns: 1fr; gap: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .header-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      padding: 16px 24px;
      gap: 14px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
      border-top: 1px solid var(--gray-light);
    }
    .header-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .header-inner { position: relative; }
    .header-tel { display: none; }
  }

  @media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .trust-bar-inner { gap: 18px; }
    .hero-ctas { gap: 10px; }
    .wa-float a span { display: none; }
    .wa-float a { padding: 16px; border-radius: 50%; }
    .hero-badge { left: 8px; bottom: 16px; }
  }