/*
Theme Name: Shortcuts Cabeleireiros
Version: 2.0
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --bg:    #080603;
      --bg2:   #0F0C08;
      --bg3:   #161310;
      --text:  #F0E8D5;
      --muted: rgba(240,232,213,0.55);
      --gold:  #C8A84B;
      --gold2: #E2C070;
      --gold3: #8A6820;
      --grad:  linear-gradient(135deg, #8A6820, #C8A84B, #E2C070, #C8A84B);
      --bord:  rgba(200,168,75,0.2);
      --bord2: rgba(200,168,75,0.45);
      --ff:    'Cormorant Garamond', Georgia, serif;
      --fb:    'Jost', sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--fb);
      font-weight: 300;
      font-size: 17px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.6rem 2.5rem;
      transition: background .4s, padding .4s;
    }
    nav.scrolled {
      background: rgba(8,6,3,.96);
      backdrop-filter: blur(16px);
      padding: 1rem 2.5rem;
      border-bottom: 1px solid var(--bord);
    }
    .logo {
      font-family: var(--ff);
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: .06em;
      color: var(--text);
      text-decoration: none;
    }
    .logo em {
      font-style: italic;
      color: var(--gold);
    }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: .8rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--grad) !important;
      color: #080603 !important;
      padding: .6rem 1.6rem !important;
      font-weight: 500 !important;
      letter-spacing: .12em !important;
      transition: opacity .25s, transform .25s !important;
    }
    .nav-cta:hover { opacity: .85 !important; transform: translateY(-1px) !important; }
    .ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .ham span { width: 26px; height: 1.5px; background: var(--gold); transition: all .3s; }
    .mob-menu {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(8,6,3,.98);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      font-family: var(--ff);
      font-size: 2rem;
      font-weight: 300;
      color: var(--text);
      text-decoration: none;
      letter-spacing: .08em;
      transition: color .3s;
    }
    .mob-menu a:hover { color: var(--gold); }
    .mob-close {
      position: absolute; top: 1.8rem; right: 2rem;
      font-size: 2rem; color: var(--gold); cursor: pointer; background: none; border: none;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 9rem 3.5rem 5rem 3.5rem;
      position: relative;
      z-index: 2;
    }
    .hero-pretitle {
      font-size: .75rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp .7s .2s forwards;
    }
    .hero-pretitle::before {
      content: '';
      width: 40px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .hero-h1 {
      font-family: var(--ff);
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--text);
      opacity: 0;
      animation: fadeUp .8s .4s forwards;
    }
    .hero-h1 em {
      display: block;
      font-style: italic;
      color: var(--gold);
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.85;
      max-width: 420px;
      margin-top: 2rem;
      opacity: 0;
      animation: fadeUp .8s .6s forwards;
    }
    .hero-btns {
      display: flex;
      gap: 1rem;
      margin-top: 2.8rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .8s .8s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--grad);
      color: #080603;
      font-family: var(--fb);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 1.1rem 2.2rem;
      text-decoration: none;
      transition: opacity .25s, transform .25s, box-shadow .25s;
      white-space: nowrap;
    }
    .btn-primary:hover {
      opacity: .88;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,168,75,.3);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: transparent;
      color: var(--gold);
      font-family: var(--fb);
      font-size: .8rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 1.1rem 2rem;
      text-decoration: none;
      border: 1px solid var(--bord2);
      transition: all .25s;
      white-space: nowrap;
    }
    .btn-secondary:hover {
      background: rgba(200,168,75,.08);
      border-color: var(--gold);
      transform: translateY(-2px);
    }
    .hero-divider {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--bord);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      opacity: 0;
      animation: fadeUp .8s 1s forwards;
    }
    .hero-info-item {}
    .hero-info-item small {
      display: block;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .3rem;
    }
    .hero-info-item p {
      font-size: .9rem;
      color: var(--text);
    }
    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--bg) 0%, transparent 20%),
                  linear-gradient(to top, var(--bg) 0%, transparent 30%);
      z-index: 1;
    }
    .hero-quote {
      position: absolute;
      bottom: 2rem; left: 2rem; right: 2rem;
      z-index: 2;
      background: rgba(8,6,3,.82);
      backdrop-filter: blur(12px);
      border-left: 3px solid var(--gold);
      padding: 1.4rem 1.8rem;
    }
    .hero-quote p {
      font-family: var(--ff);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text);
      margin-bottom: .4rem;
    }
    .hero-quote span {
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── MARQUEE ── */
    .marquee {
      background: var(--bg2);
      border-top: 1px solid var(--bord);
      border-bottom: 1px solid var(--bord);
      padding: 1rem 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      align-items: center;
      gap: 3rem;
      white-space: nowrap;
      animation: marquee 24s linear infinite;
    }
    .marquee-track span {
      font-family: var(--ff);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--gold2);
      flex-shrink: 0;
    }
    .marquee-track i { color: var(--gold3); font-style: normal; font-size: .5rem; }

    /* ── SECTION COMMONS ── */
    section { padding: 6rem 2.5rem; }
    .container { max-width: 1080px; margin: 0 auto; }
    .section-label {
      font-size: .72rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: .9rem;
      margin-bottom: 1rem;
    }
    .section-label::before {
      content: ''; width: 32px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }
    .section-title {
      font-family: var(--ff);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-desc {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.85;
      max-width: 560px;
      margin-bottom: 3.5rem;
    }
    .gold-line {
      width: 48px; height: 2px;
      background: var(--grad);
      margin: 1.5rem 0 2.5rem;
    }

    /* ── FEATURES ── */
    #features { background: var(--bg2); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .feat-card {
      background: var(--bg3);
      border: 1px solid var(--bord);
      padding: 2.5rem 2.2rem;
      transition: border-color .3s;
    }
    .feat-card:hover { border-color: var(--gold); }
    .feat-icon {
      width: 48px; height: 48px;
      border: 1px solid var(--bord2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
    }
    .feat-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .feat-card h3 {
      font-family: var(--ff);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: .7rem;
    }
    .feat-card p {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── SERVICES ── */
    #servicos { background: var(--bg); }
    .services-list {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--bord);
    }
    .service-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem 2.2rem;
      border-bottom: 1px solid var(--bord);
      transition: background .3s;
      gap: 2rem;
    }
    .service-row:last-child { border-bottom: none; }
    .service-row:hover { background: var(--bg2); }
    .service-num {
      font-family: var(--ff);
      font-size: .85rem;
      font-style: italic;
      color: var(--gold3);
      flex-shrink: 0;
      width: 28px;
    }
    .service-name {
      font-family: var(--ff);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text);
      flex: 1;
    }
    .service-desc {
      font-size: .9rem;
      color: var(--muted);
      max-width: 300px;
      text-align: right;
    }
    .service-arrow {
      color: var(--gold);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    /* ── SOBRE ── */
    #sobre { background: var(--bg2); }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .sobre-img {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--bord);
    }
    .sobre-img img {
      width: 100%;
      display: block;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
    }
    .sobre-cap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(8,6,3,.95) 0%, transparent 100%);
    }
    .sobre-cap cite {
      font-family: var(--ff);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text);
      display: block;
      margin-bottom: .4rem;
    }
    .sobre-cap small {
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .sobre-text p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 1.4rem;
    }
    .sobre-creds {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin: 2.5rem 0;
    }
    .cred-item {
      padding: 1.4rem 1.6rem;
      border: 1px solid var(--bord);
      background: var(--bg3);
    }
    .cred-item small {
      display: block;
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .4rem;
    }
    .cred-item p {
      font-size: .92rem;
      color: var(--text);
      line-height: 1.5;
    }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--bg); }
    .port-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 8px;
    }
    .port-item {
      position: relative;
      overflow: hidden;
      background: var(--bg3);
      border: 1px solid var(--bord);
    }
    .port-item.tall { grid-row: span 2; }
    .port-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }
    .port-item:hover img { transform: scale(1.04); }
    .port-ph {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .8rem;
      padding: 1.5rem;
      text-align: center;
    }
    .port-ph svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; opacity: .5; }
    .port-ph span {
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .port-ph small { font-size: .75rem; color: var(--muted); }
    .port-ov {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1rem 1.2rem;
      background: linear-gradient(to top, rgba(8,6,3,.88) 0%, transparent 100%);
      border-left: 2px solid var(--gold);
    }
    .port-ov span {
      font-size: .62rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── REVIEWS ── */
    #reviews { background: var(--bg2); }
    .rev-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .rev-stars {
      font-size: 1.1rem;
      color: var(--gold);
      letter-spacing: .1em;
      margin-bottom: .5rem;
    }
    .rev-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .rev-card {
      background: var(--bg3);
      border: 1px solid var(--bord);
      padding: 2.2rem;
      position: relative;
      transition: border-color .3s;
    }
    .rev-card:hover { border-color: var(--gold); }
    .rev-card::before {
      content: '"';
      font-family: var(--ff);
      font-size: 4.5rem;
      color: var(--gold3);
      line-height: .5;
      position: absolute;
      top: 1.8rem; right: 1.8rem;
      opacity: .4;
    }
    .rev-card-stars {
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: .1em;
      margin-bottom: 1.2rem;
    }
    .rev-card p {
      font-family: var(--ff);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }
    .rev-author {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .rev-date { font-size: .72rem; color: var(--muted); margin-top: .2rem; }

    /* ── FAQ ── */
    #faq { background: var(--bg); }
    .faq-list { margin-top: 3rem; }
    .faq-item { border-bottom: 1px solid var(--bord); }
    .faq-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.8rem 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 1.5rem;
    }
    .faq-btn span {
      font-family: var(--ff);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--text);
      transition: color .3s;
    }
    .faq-btn:hover span { color: var(--gold); }
    .faq-icon {
      width: 32px; height: 32px;
      border: 1px solid var(--bord2);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: transform .3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-item.open .faq-btn span { color: var(--gold); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.85;
    }
    .faq-item.open .faq-answer {
      max-height: 200px;
      padding-bottom: 1.8rem;
    }

    /* ── LOCAL ── */
    #local { background: var(--bg2); }
    .local-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .local-items { display: flex; flex-direction: column; gap: 2rem; margin-top: .5rem; }
    .local-item { display: flex; gap: 1.2rem; align-items: flex-start; }
    .local-icon {
      width: 42px; height: 42px;
      border: 1px solid var(--bord2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .local-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .local-item h4 {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .3rem;
    }
    .local-item p, .local-item a {
      font-size: 1rem;
      color: var(--text);
      text-decoration: none;
      line-height: 1.65;
    }
    .local-item a:hover { color: var(--gold); }
    .local-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
    .map-box {
      aspect-ratio: 4/3;
      overflow: hidden;
      border: 1px solid var(--bord);
    }
    .map-box iframe {
      width: 100%; height: 100%;
      border: none;
      filter: grayscale(100%) invert(88%) contrast(.82) brightness(.7);
    }

    /* ── CTA ── */
    #cta {
      background: radial-gradient(ellipse at 50% 0%, rgba(200,168,75,.1) 0%, transparent 60%), var(--bg3);
      text-align: center;
    }
    #cta .section-title { margin: 0 auto 1rem; }
    #cta .section-desc { margin: 0 auto 3rem; text-align: center; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-wa {
      display: inline-flex; align-items: center; gap: .6rem;
      background: #25d366; color: #fff;
      font-family: var(--fb); font-size: .8rem; font-weight: 500;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 1.1rem 2.2rem; text-decoration: none;
      transition: all .25s;
    }
    .btn-wa:hover { background: #1fba58; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
    .btn-tel {
      display: inline-flex; align-items: center; gap: .6rem;
      background: transparent; color: var(--muted);
      font-family: var(--fb); font-size: .8rem; font-weight: 400;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 1.1rem 2rem; text-decoration: none;
      border: 1px solid var(--bord2); transition: all .25s;
    }
    .btn-tel:hover { border-color: var(--gold); color: var(--gold); }

    /* ── FOOTER ── */
    footer {
      background: #040200;
      border-top: 1px solid var(--bord);
      padding: 4rem 2.5rem 2rem;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      max-width: 1080px;
      margin: 0 auto;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--bord);
      margin-bottom: 2rem;
    }
    .foot-logo {
      font-family: var(--ff);
      font-size: 1.3rem;
      color: var(--text);
      text-decoration: none;
      display: block;
      margin-bottom: 1rem;
    }
    .foot-logo em { font-style: italic; color: var(--gold); }
    .foot-desc { font-size: .9rem; color: var(--muted); line-height: 1.75; max-width: 240px; }
    .foot-col h4 {
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
    .foot-col a { font-size: .9rem; color: var(--muted); text-decoration: none; transition: color .3s; }
    .foot-col a:hover { color: var(--text); }
    .foot-bot {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .foot-copy { font-size: .75rem; color: rgba(240,232,213,.2); letter-spacing: .08em; }
    .socials { display: flex; gap: .8rem; }
    .soc {
      width: 36px; height: 36px;
      border: 1px solid var(--bord);
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 500;
      color: var(--muted); text-decoration: none;
      transition: border-color .3s, color .3s;
      letter-spacing: .03em;
    }
    .soc:hover { border-color: var(--gold); color: var(--gold); }

    /* ── WA FLOAT ── */
    .wa-float {
      position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
      width: 54px; height: 54px;
      background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: transform .3s, box-shadow .3s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
    .wa-float svg { width: 26px; height: 26px; fill: white; }

    /* ── REVEAL ── */
    .r { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
    .r.v { opacity: 1; transform: translateY(0); }
    .r.d1 { transition-delay: .1s; }
    .r.d2 { transition-delay: .2s; }
    .r.d3 { transition-delay: .3s; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 1.2rem 1.4rem; }
      nav.scrolled { padding: .9rem 1.4rem; }
      .nav-links { display: none; }
      .ham { display: flex; }
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 6rem 1.4rem 2.5rem; }
      .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
      .hero-desc { font-size: .95rem; }
      .hero-btns { flex-direction: column; gap: .8rem; }
      .btn-primary, .btn-secondary { justify-content: center; text-align: center; }
      .hero-divider { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; }
      .hero-right { height: 60vw; min-height: 260px; }
      section { padding: 4rem 1.4rem; }
      .features-grid { grid-template-columns: 1fr; }
      .service-desc { display: none; }
      .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .sobre-creds { grid-template-columns: 1fr; }
      .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .port-item.tall { grid-row: span 1; }
      .rev-grid { grid-template-columns: 1fr; }
      .local-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .foot-bot { flex-direction: column; text-align: center; }
      .cta-btns { flex-direction: column; align-items: center; }
      .btn-wa, .btn-tel, .btn-primary { width: 100%; max-width: 300px; justify-content: center; }
      .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    }
    @media (max-width: 480px) {
      .port-grid { grid-template-columns: 1fr; }
      .hero-h1 { font-size: clamp(2rem, 10vw, 3rem); }
    }