@import url('main.css');
    
  .nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .logo-mark {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--red); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -1px;
  }
  .logo-text { font-size: 1.05rem; font-weight: 900; color: var(--white); line-height: 1.1; }
  .logo-text small { display: block; font-size: 0.58rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  nav.scrolled .logo-text { color: var(--blue); }
  nav.scrolled .logo-text small { color: #999; }
  nav.scrolled .logo-white{ background: url('../imgs/iep-blue.webp'); display: block; width: 213px; height: 48px; }
  nav.logo{ width: 213px; height: 48px;  }
  nav.scrolled .logo{ display: none; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.85);
    font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase;
    position: relative; transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--blue); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--red); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--red) !important; }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red) !important; color: #fff !important;
    padding: 8px 20px; border-radius: 4px; font-weight: 700 !important;
  }
  .nav-cta:hover { background: #c43e3e !important; }
  .nav-cta::after { display: none !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  nav.scrolled .hamburger span { background: var(--blue); }

  /* ── HERO ── */
  #inicio {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--blue);
  }
  .hero-geo {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .hero-geo .geo-circle {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(220,80,79,0.15);
  }
  .hero-geo .gc1 { width: 600px; height: 600px; top: -200px; right: -100px; }
  .hero-geo .gc2 { width: 380px; height: 380px; top: 10%; right: 8%; border-color: rgba(220,80,79,0.25); }
  .hero-geo .gc3 { width: 180px; height: 180px; top: 20%; right: 20%; border-color: rgba(220,80,79,0.4); }
  .hero-geo .gblock {
    position: absolute; background: rgba(220,80,79,0.08);
  }
  .hero-geo .gb1 { width: 300px; height: 300px; bottom: -80px; left: -60px; border-radius: 40px; transform: rotate(20deg); }
  .hero-geo .gb2 { width: 120px; height: 120px; bottom: 30%; left: 5%; border-radius: 20px; transform: rotate(-10deg); background: rgba(220,80,79,0.12); }
  .hero-dot-grid {
    position: absolute; top: 0; right: 0; width: 55%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .hero-content {
    position: relative; z-index: 2; padding: 100px 5% 80px;
    max-width: 100%;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(220,80,79,0.15); border: 1px solid rgba(220,80,79,0.35);
    border-radius: 50px; padding: 5px 16px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: #f08080; margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease forwards;
  }
  .hero-tag i { color: var(--red); }
  .hero-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.1; color: #fff;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.9s 0.1s ease both;
  }
  .hero-content h1 .red { color: var(--red); }
  .hero-content h1 .underline-red {
    position: relative; display: inline-block;
  }
  .hero-content h1 .underline-red::after {
    content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 6px;
    background: rgba(220,80,79,0.35); z-index: -1;
  }
  .hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 300;
    color: rgba(255,255,255,0.7); line-height: 1.75;
    max-width: 560px; margin-bottom: 2.5rem;
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 1s 0.3s ease both; }
  .btn-red {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: #fff; font-family: var(--font);
    font-size: 0.95rem; font-weight: 700; padding: 14px 32px;
    border-radius: 6px; border: none; text-decoration: none; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(220,80,79,0.4);
  }
  .btn-red:hover { background: #c43e3e; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(220,80,79,0.55); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: #fff; font-family: var(--font);
    font-size: 0.95rem; font-weight: 400; padding: 14px 32px;
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none; cursor: pointer; transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-3px); }
  .hero-metrics {
    display: flex; gap: 3rem; margin-top: 4rem;
    animation: fadeUp 1s 0.4s ease both;
  }
  .hero-metric .big { font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; }
  .hero-metric p { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.55); margin-top: 4px; }
  .hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  /* ── KEYWORD STRIP ── */
  .kw-strip {
    background: var(--red); padding: 16px 0; overflow: hidden;
    white-space: nowrap;
  }
  .kw-inner {
    display: inline-flex; gap: 0;
    animation: marquee 20s linear infinite;
  }
  .kw-strip:hover .kw-inner { animation-play-state: paused; }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .kw-item {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: #fff; padding: 0 32px;
  }
  .kw-item i { color: rgba(255,255,255,0.45); font-size: 0.5rem; }

  /* ── SECTION BASE ── */
  section { padding: 90px 10%; }
  .sec-label {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--red); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1rem;
  }
  .sec-label::before { content:''; display:block; width:24px; height:2px; background:var(--red); }
  .sec-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 900; color: var(--blue); line-height: 1.15; margin-bottom: 1rem;
  }
  .sec-title span { color: var(--red); }
  .sec-sub {
    font-size: 1rem; font-weight: 300; color: #5a6a7a;
    line-height: 1.75; max-width: 580px;
  }
  .sec-title-white { color: #fff; }
  .sec-sub-white { color: rgba(255,255,255,0.65); }

  /* ── QUEM SOMOS ── */
  #quem-somos { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center; margin-top: 3rem; }
  .about-visual {
    position: relative; border-radius: 16px; overflow: visible;
  }
  .about-visual img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 16px; display: block;
    box-shadow: 30px 30px 0 var(--red);
  }
  .about-badge-box {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--blue); border-radius: 12px;
    padding: 20px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .about-badge-box .num { font-size: 2.6rem; font-weight: 900; color: var(--red); line-height: 1; }
  .about-badge-box p { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
  .about-text p { font-size: 0.97rem; font-weight: 300; color: #5a6a7a; line-height: 1.8; margin-bottom: 1rem; }
  .about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
  .about-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light); border-radius: 50px; padding: 8px 18px;
    font-size: 0.82rem; font-weight: 700; color: var(--blue); border: 1px solid var(--mid);
  }
  .about-pill i { color: var(--red); font-size: 0.75rem; }

  /* ── KEYWORD DIVIDER ── */
  .kw-divider {
    background: var(--blue); padding: 60px 5%; text-align: center;
    position: relative; overflow: hidden;
  }
  .kw-divider::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px; border-radius: 50%;
    border: 1px solid rgba(220,80,79,0.2);
  }
  .kw-divider::after {
    content: ''; position: absolute; bottom: -80px; left: -40px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px solid rgba(220,80,79,0.15);
  }
  .kw-divider h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900; color: #fff; position: relative; z-index: 1;
    line-height: 1.3;
  }
  .kw-divider h2 span { color: var(--red); }
  .kw-divider p {
    font-size: 1rem; font-weight: 300;
    color: rgba(255,255,255,0.55); margin-top: 0.8rem;
    position: relative; z-index: 1;
  }

  /* ── SERVIÇOS ── */
  #servicos { background: var(--light); }
  .services-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 4rem; }
  .service-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5%; align-items: center;
  }
  .service-item.reverse { direction: rtl; }
  .service-item.reverse > * { direction: ltr; }
  .service-img {
    border-radius: 14px; overflow: hidden; position: relative;
  }
  .service-img img {
    width: 100%; height: 320px; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .service-img:hover img { transform: scale(1.04); }
  .service-img .svc-tag {
    position: absolute; top: 20px; left: 20px;
    background: var(--red); color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 4px;
  }
  .service-text {}
  .svc-number { font-size: 4rem; font-weight: 900; color: rgba(220,80,79,0.1); line-height: 1; margin-bottom: -10px; }
  .service-text h3 { font-size: 1.8rem; font-weight: 900; color: var(--blue); margin-bottom: 1rem; }
  .service-text p { font-size: 0.95rem; font-weight: 300; color: #5a6a7a; line-height: 1.8; margin-bottom: 1.4rem; }
  .svc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .svc-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; font-weight: 400; color: var(--blue);
  }
  .svc-features li i { color: var(--red); font-size: 0.7rem; }

  /* ── CLINICA MÉDICA ── */
  #clinica {
    background: var(--blue);
  }
  .clinica-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; align-items: start; }
  .clinica-text {}
  .clinica-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 12px; }
  .clinica-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }
  .clinica-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
  .clinica-logos h4 {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
  }
  .logo-carousel { position: relative; overflow: hidden; }
  .logo-track { display: flex; transition: transform 0.5s cubic-bezier(.25,.8,.25,1); }
  .logo-slide {
    min-width: calc(100% / 3);
    padding: 0 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; width: 100%; height: 80px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .logo-card:hover { background: rgba(220,80,79,0.08); border-color: rgba(220,80,79,0.3); }
  .logo-card span { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }
  .logo-dots { display: flex; justify-content: flex-start; gap: 8px; margin-top: 1.2rem; }
  .logo-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: all 0.3s; }
  .logo-dot.active { background: var(--red); width: 22px; border-radius: 4px; }
  .logo-arrows { display: flex; gap: 8px; margin-top: 1rem; }
  .logo-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; font-size: 0.85rem;
  }
  .logo-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

  /* ── COMPARE ── */
  #compare { background: var(--white); }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
  .compare-col {
    border-radius: 16px; padding: 36px;
    border: 2px solid transparent;
  }
  .compare-col.ours {
    background: var(--blue);
    border-color: var(--red);
    box-shadow: 0 20px 60px rgba(18,32,45,0.2);
  }
  .compare-col.theirs { background: var(--light); border-color: var(--mid); }
  .compare-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
    margin-bottom: 1.4rem;
  }
  .compare-badge.good { background: rgba(220,80,79,0.15); color: var(--red); }
  .compare-badge.bad { background: rgba(0,0,0,0.05); color: #aaa; }
  .compare-col h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.4rem; }
  .compare-col.ours h3 { color: #fff; }
  .compare-col.theirs h3 { color: var(--blue); }
  .compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .compare-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem; font-weight: 300; line-height: 1.6;
  }
  .compare-col.ours .compare-list li { color: rgba(255,255,255,0.8); }
  .compare-col.theirs .compare-list li { color: #7a8a9a; }
  .compare-list li i { margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
  .compare-col.ours .compare-list li i { color: #4cde80; }
  .compare-col.theirs .compare-list li i { color: #e05555; }

  /* ── ABAS (TABS) ── */
  #abas { background: var(--light); }
  .tabs-nav {
    display: flex; gap: 0; border-bottom: 2px solid var(--mid);
    margin-top: 2.5rem; overflow-x: auto; scrollbar-width: none;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn {
    padding: 14px 24px; font-family: var(--font);
    font-size: 0.85rem; font-weight: 700; color: #999;
    background: none; border: none; cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all 0.3s; white-space: nowrap;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
  .tab-btn:hover:not(.active) { color: var(--blue); }
  .tabs-content { margin-top: 2.5rem; }
  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4%; align-items: start; animation: fadeUp 0.4s ease; }
  .tab-panel h3 { font-size: 1.5rem; font-weight: 900; color: var(--blue); margin-bottom: 1rem; }
  .tab-panel p { font-size: 0.95rem; font-weight: 300; color: #5a6a7a; line-height: 1.8; margin-bottom: 1rem; }
  .tab-panel-visual {
    background: var(--blue); border-radius: 14px; padding: 32px;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .tp-stat { }
  .tp-bar-label {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 6px;
  }
  .tp-bar-track { background: rgba(255,255,255,0.08); border-radius: 50px; height: 8px; overflow: hidden; }
  .tp-bar-fill { height: 100%; background: var(--red); border-radius: 50px; transition: width 1s ease; }

  /* ── DEPOIMENTOS ── */
  #depoimentos { background: var(--white); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .testi-card {
    background: var(--light); border-radius: 14px; padding: 28px;
    border: 1px solid var(--mid); transition: all 0.3s; position: relative;
  }
  .testi-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(220,80,79,0.25); }
  .testi-card::before {
    content: '"'; position: absolute; top: 16px; right: 22px;
    font-size: 5rem; font-weight: 900; color: rgba(220,80,79,0.1);
    line-height: 1; font-family: Georgia, serif;
  }
  .testi-stars { color: var(--red); font-size: 0.8rem; margin-bottom: 14px; }
  .testi-text { font-size: 0.9rem; font-weight: 300; color: #5a6a7a; line-height: 1.75; margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #e88080);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1rem; color: #fff; flex-shrink: 0;
  }
  .testi-name { font-size: 0.88rem; font-weight: 700; color: var(--blue); }
  .testi-role { font-size: 0.75rem; color: #999; margin-top: 2px; }

  /* ── CONSULTORIA / FORMULÁRIO ── */
  #consultoria { background: var(--blue); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; align-items: start; }
  .form-info {}
  .form-benefits { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 14px; }
  .form-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.6; }
  .form-benefits li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
  form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
  .form-group input, .form-group textarea, .form-group select {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 13px 16px;
    font-family: var(--font); font-size: 0.92rem; color: #fff;
    outline: none; transition: border-color 0.3s, background 0.3s;
    resize: none;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--red); background: rgba(255,255,255,0.09);
  }
  .form-group select option { background: var(--blue); }
  .form-group textarea { min-height: 110px; }
  .form-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--red); color: #fff; font-family: var(--font);
    font-size: 1rem; font-weight: 700; padding: 16px 36px;
    border-radius: 8px; border: none; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(220,80,79,0.4);
    width: 100%; margin-top: 0.5rem;
  }
  .form-submit:hover { background: #c43e3e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,80,79,0.55); }
  .form-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 0.5rem; }

  /* ── FOOTER ── */
  footer { background: #0a161f; padding: 60px 10% 28px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ft-brand .ft-logo { font-size: 1.3rem; font-weight: 900; color: #fff; }
  .ft-brand .ft-logo span { color: var(--red); }
  .ft-brand p { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 12px; max-width: 300px; }
  .ft-socials { display: flex; gap: 10px; margin-top: 18px; }
  .ft-social {
    width: 38px; height: 38px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45); font-size: 0.95rem; text-decoration: none;
    transition: all 0.3s;
  }
  .ft-social:hover { border-color: var(--red); color: var(--red); background: rgba(220,80,79,0.08); transform: translateY(-3px); }
  .ft-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ft-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; font-weight: 300; transition: color 0.3s; }
  .ft-col ul li a:hover { color: var(--red); }
  .ft-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
  .ft-contact-item i { color: var(--red); font-size: 0.85rem; margin-top: 2px; }
  .ft-contact-item span { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.5; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
  .footer-bottom a { color: var(--red); text-decoration: none; }

  /* ── FAB ── */
  .fab-wa {
    position: fixed; bottom: 26px; right: 26px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    animation: pulseGreen 2.5s ease-in-out infinite;
    transition: transform 0.3s;
  }
  .fab-wa:hover { transform: scale(1.12); animation: none; }
  @keyframes pulseGreen { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.72)} }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .about-grid, .compare-grid, .form-grid, .tab-panel.active, .clinica-inner { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .service-item, .service-item.reverse { grid-template-columns: 1fr; direction: ltr; }
    .hero-metrics { gap: 2rem; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 4%; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 20px 5%; gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
    .nav-links a { color: var(--blue) !important; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
    .about-visual img { box-shadow: 10px 10px 0 var(--red); }
    .about-badge-box { right: 10px; bottom: -10px; }
    .logo-slide { min-width: calc(100% / 2); }
  }
  @media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .logo-slide { min-width: 100%; }
    section { padding: 60px 5%; }
    .tabs-nav { flex-wrap: nowrap; }
  }
