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

  :root {
    --navy: #0d1414; /* Matched to logo background */
    --navy-mid: #142036;
    --navy-light: #1e2f4a;
    --gold: #c49a3c;
    --gold-light: #e0b85a;
    --gold-pale: #f5e9cc;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-light: #e8e5df;
    --gray-mid: #9a9690;
    --text-dark: #1a1612;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13, 20, 20, 0.96); /* Matched to #0d1414 */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 154, 60, 0.2);
    padding: 0 2rem;
    height: 70px; /* Thinner header */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 101;
  }

  .nav-logo img {
    height: 185px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    margin-top: -5px;
  }

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

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
    padding: 0;
    line-height: 1;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(13, 20, 20, 0.98);
    backdrop-filter: blur(12px);
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    z-index: 100;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

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

  /* HERO */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(196,154,60,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196,154,60,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-accent {
    position: absolute;
    top: -120px; right: -80px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,60,0.12) 0%, transparent 70%);
  }

  .hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196,154,60,0.4);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
    max-width: 700px;
    flex: 1;
  }

  .hero-main-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .hero-offer-box {
    max-width: 320px;
    background: rgba(196, 154, 60, 0.08);
    border: 1px dashed var(--gold);
    padding: 1.5rem;
    border-radius: 4px;
    position: relative;
    backdrop-filter: blur(4px);
  }

  .offer-badge {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    position: absolute;
    top: -10px;
    left: 1.5rem;
  }

  .offer-text {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
  }

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

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-ghost {
    color: rgba(255,255,255,0.75);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: rgba(196,154,60,0.6); color: var(--gold-light); }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
  }

  /* SECTIONS */
  section { padding: 100px 2rem; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-title.white { color: var(--white); }

  .section-desc {
    font-size: 1rem;
    color: var(--gray-mid);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.8;
  }

  .section-desc.white { color: rgba(255,255,255,0.55); }

  /* SERVIÇOS */
  #servicos {
    background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
  }
  #servicos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,154,60,0.25), transparent);
    z-index: 2;
  }

  .servicos-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(196,154,60,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196,154,60,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 100%);
    pointer-events: none;
  }

  .servicos-accent {
    position: absolute;
    top: -160px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,60,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4.5rem;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .services-header .section-title { max-width: 420px; line-height: 1.15; }
  .services-header .section-desc {
    max-width: 440px;
    font-size: 1.05rem;
    color: var(--gray-mid);
    line-height: 1.7;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.5s ease;
  }
  .service-card:hover::before { height: 100%; }

  .service-card:hover {
    background: var(--navy);
    transform: translateY(-8px);
    border-color: rgba(196,154,60,0.2);
    box-shadow: 0 25px 60px rgba(13,20,20,0.15);
  }

  .sc-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--gray-light);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transition: color 0.3s;
  }
  .service-card:hover .sc-num { color: rgba(196,154,60,0.35); }

  .sc-icon {
    width: 56px; height: 56px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.4s;
  }
  .service-card:hover .sc-icon {
    background: rgba(196,154,60,0.1);
    color: var(--gold-light);
    transform: scale(1.1) rotate(-5deg);
  }

  .sc-content { flex: 1; }

  .sc-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
  }
  .service-card:hover .sc-title { color: var(--white); }

  .sc-desc {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.7;
    font-weight: 300;
    transition: color 0.3s;
  }
  .service-card:hover .sc-desc { color: rgba(255,255,255,0.45); }

  .sc-arrow {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--gray-light);
    transition: all 0.4s;
    align-self: flex-end;
  }
  .service-card:hover .sc-arrow {
    color: var(--gold);
    transform: translateX(6px);
  }

  /* PORTFOLIO */
  #portfolio { background: var(--navy); position: relative; }
  #portfolio::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,154,60,0.3), transparent);
  }

  .portfolio-header { margin-bottom: 3.5rem; }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }

  .port-item {
    position: relative;
    overflow: hidden;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s, box-shadow 0.4s;
  }

  .port-item:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); border-color: rgba(196,154,60,0.2); }

  .port-item:nth-child(1) { grid-column: span 4; min-height: 340px; }
  .port-item:nth-child(2) { grid-column: span 3; min-height: 340px; }
  .port-item:nth-child(3) { grid-column: span 2; min-height: 340px; }
  .port-item:nth-child(4) { grid-column: span 3; min-height: 340px; }

  .port-visual {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    min-height: inherit;
    position: relative;
    overflow: hidden;
  }

  .port-bg {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    opacity: 0.07;
  }

  .port-mockup {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 75%;
    padding: 1.5rem;
    transition: transform 0.5s, border-color 0.3s;
  }

  .port-item:hover .port-mockup { transform: scale(1.05) translateY(-4px); border-color: rgba(196,154,60,0.4); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

  .pm-bar {
    display: flex; gap: 5px;
    margin-bottom: 0.75rem;
  }

  .pm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
  }

  .pm-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    opacity: 0.9;
  }

  .pm-line {
    height: 5px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 6px;
  }

  .pm-block {
    height: 36px;
    border-radius: 2px;
    background: rgba(196,154,60,0.08);
    margin-bottom: 8px;
  }

  .port-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent 20%, rgba(10,22,40,0.97));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(25%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .port-item:hover .port-overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .port-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 500;
  }

  .port-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .btn-preview {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--navy);
    background: var(--gold);
    padding: 0.5rem 1.1rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s;
  }

  .btn-preview:hover {
    background: var(--gold-light);
    gap: 0.7rem;
  }

  /* PRECOS */
  #precos {
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--off-white) 70%, rgba(13,20,20,0.05) 78%, rgba(13,20,20,0.3) 88%, var(--navy) 100%);
    padding-bottom: 120px;
  }

  .pricing-header { margin-bottom: 4rem; text-align: center; }

  .pricing-header .section-desc { margin: 0 auto; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
  }

  .price-card {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
  }

  .price-card:hover { border-color: var(--gold); transform: translateY(-4px); }

  .price-card.featured {
    background: var(--navy);
    border-color: var(--gold);
  }

  .price-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 2px;
  }

  .pc-plan {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .pc-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .price-card.featured .pc-price { color: var(--white); }

  .pc-price sup {
    font-size: 1.2rem;
    font-weight: 400;
    vertical-align: super;
    line-height: 1;
  }

  .pc-billing {
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 2rem;
  }

  .price-card.featured .pc-billing { color: rgba(255,255,255,0.45); }

  .pc-divider {
    height: 1px;
    background: var(--gray-light);
    margin-bottom: 1.5rem;
  }

  .price-card.featured .pc-divider { background: rgba(255,255,255,0.1); }

  .pc-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .pc-features li {
    font-size: 0.9rem;
    color: var(--gray-mid);
    padding: 0.45rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
  }

  .price-card.featured .pc-features li { color: rgba(255,255,255,0.65); }

  .pc-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
  }

  .pc-cta {
    display: block;
    text-align: center;
    padding: 0.875rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
  }

  .pc-cta.outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
  }

  .pc-cta.outline:hover { background: var(--navy); color: var(--white); }

  .pc-cta.solid {
    background: var(--gold);
    color: var(--navy);
  }

  .pc-cta.solid:hover { background: var(--gold-light); }

  .pc-desc {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .price-card.featured .pc-desc { color: rgba(255,255,255,0.55); }

  /* CONTATO */
  #contato { background: var(--navy); }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }


  .contact-items { margin-top: 3rem; }

  .ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    transition: transform 0.3s;
  }

  .ci-item:hover { transform: translateX(6px); }

  .ci-icon {
    width: 44px; height: 44px;
    background: rgba(196,154,60,0.1);
    border: 1px solid rgba(196,154,60,0.25);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .ci-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
  }

  .ci-val {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
  }


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

  .form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 300;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .form-select option { background: var(--navy-mid); }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: rgba(196,154,60,0.5);
  }

  .form-textarea { resize: vertical; min-height: 120px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-body);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit { transition: background 0.2s, transform 0.2s; }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: #0d1414;
    padding: 0 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(196,154,60,0.15);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo img {
    height: 220px;
    width: auto;
    display: block;
  }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom { text-align: center; margin-top: 0; padding-top: 0.25rem; border-top: 1px solid rgba(255,255,255,0.05); }
  .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

  /* AVISO PRECOS */
  .pricing-disclaimer {
    text-align: center;
    max-width: 580px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-light);
    background: var(--white);
  }
  .pricing-disclaimer p {
    font-size: 0.8rem;
    color: var(--gray-mid);
    line-height: 1.7;
  }
  .pricing-disclaimer .gold-divider {
    margin: 0.75rem auto;
  }

  /* DIVIDER */
  .gold-divider {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    section { padding: 70px 1.25rem; }

    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

    .portfolio-grid {
      grid-template-columns: 1fr 1fr;
    }
    .port-item:nth-child(n) { grid-column: span 1; }

    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }