/*
Theme Name: Loriano Reis
Description: Tema personalizado para Loriano Reis - Desenvolvimento WordPress profissional
Version: 1.0
Author: Loriano Reis
Text Domain: loriano-reis
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0a0a0a;
  --accent: #6c63ff;
  --accent2: #ff6584;
  --light: #f8f8ff;
  --gray: #888;
  --white: #fff;
  --font: 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(108,99,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--primary);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; border-bottom: 0; }
a:hover { text-decoration: none; }

/* ===== MEDIA ===== */
img { max-width: 100%; height: auto; display: block; }
video, iframe { max-width: 100%; }
figure { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108,99,255,0.15);
  transition: all .3s;
}

.site-nav.scrolled { padding: .8rem 6%; box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links li { flex: 0 0 auto; }
.nav-links a { font-size: .95rem; color: #ccc; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: var(--white);
  padding: .6rem 1.4rem; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,99,255,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
  z-index: 1002;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.mobile-nav-links a,
.mobile-nav-cta {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.mobile-nav-links a {
  padding: .95rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 600;
}

.mobile-nav-links a:hover {
  border-color: rgba(108,99,255,.4);
  background: rgba(108,99,255,.08);
}

.mobile-nav-cta {
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(108,99,255,.28);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: left;
  padding: 8rem 6% 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,10,10,.25) 0%, rgba(10,10,10,.75) 70%, rgba(10,10,10,.92) 100%);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,.25) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,101,132,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(108,99,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(108,99,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-items: center;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-media { width: 100%; }

.image-carousel.hero-showcase {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 88px rgba(0,0,0,.6);
}

.image-carousel.hero-showcase .carousel-container,
.image-carousel.hero-showcase .carousel-slide { height: 100%; }

.image-carousel.hero-showcase .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  filter: none;
}

.image-carousel.hero-showcase .carousel-counter { display: none; }
.image-carousel.hero-showcase .carousel-indicators { bottom: 14px; }
.image-carousel.hero-showcase .carousel-dot { width: 8px; height: 8px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(108,99,255,.15); border: 1px solid rgba(108,99,255,.3);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .85rem; color: #a89fff; margin-bottom: 1.5rem;
}

.hero-badge span { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #aaa; max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-btns a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: var(--white); padding: .9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(108,99,255,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108,99,255,.5); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.2); color: var(--white);
  padding: .9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: 3.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.stat h3 { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat p { font-size: .85rem; color: var(--gray); margin-top: .2rem; }

/* ===== SECTIONS ===== */
section { padding: 6rem 6%; }

.section-label {
  display: inline-block;
  background: rgba(108,99,255,.15); border: 1px solid rgba(108,99,255,.3);
  color: var(--accent); padding: .3rem .9rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}

.section-sub { color: #aaa; font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* ===== SERVICES ===== */
.services { background: #0d0d0d; }

.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,.08), transparent);
  opacity: 0; transition: opacity .3s;
}

.service-card:hover { border-color: rgba(108,99,255,.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon i { width: 24px; height: 24px; color: #fff; }

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p { color: #888; font-size: .9rem; line-height: 1.6; }

/* ===== PROCESS ===== */
.process { background: var(--primary); }

.process-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }

.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem; border-radius: var(--radius);
  border: 1px solid transparent; transition: all .3s;
}

.step:hover { background: rgba(108,99,255,.06); border-color: rgba(108,99,255,.2); }

.step-num {
  min-width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}

.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.step p { color: #888; font-size: .88rem; line-height: 1.5; }

.process-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.process-img {
  width: 100%; max-width: 480px; border-radius: 20px;
  object-fit: cover; aspect-ratio: 4/3;
  display: block;
  background: transparent;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}

.process-img .carousel-container,
.process-img .carousel-slide { height: 100%; }

/* ===== PORTFOLIO ===== */
.portfolio { background: #0d0d0d; }

.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 16/10;
  cursor: pointer;
  isolation: isolate;
}

.portfolio-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  background: transparent;
  border-radius: inherit;
}

.portfolio-card-bg .carousel-container,
.portfolio-card-bg .carousel-slide { height: 100%; }

.portfolio-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform .5s ease, filter .5s ease;
}

.portfolio-card:hover .portfolio-card-bg img {
  transform: scale(1.12);
  filter: saturate(1.08);
}

.portfolio-card.touch-active .portfolio-card-bg img {
  transform: scale(1.12);
  filter: saturate(1.08);
}

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}

.portfolio-card::after {
  content: 'Zoom';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(10,10,10,.68);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card.touch-active::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-overlay h3 { font-size: 1.1rem; font-weight: 700; }
.portfolio-overlay p { color: #aaa; font-size: .85rem; margin-top: .3rem; }
.portfolio-tag {
  display: inline-block; background: var(--accent);
  padding: .2rem .7rem; border-radius: 50px; font-size: .75rem;
  margin-top: .6rem;
}

.lightbox-open {
  overflow: hidden;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, .88);
  backdrop-filter: blur(10px);
}

.portfolio-lightbox-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 0;
  display: grid;
  gap: 1rem;
}

.portfolio-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  background: rgba(255,255,255,.03);
}

.portfolio-lightbox-caption {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: .95rem;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .portfolio-card::after {
    content: 'Toque para ampliar';
    opacity: 1;
    transform: translateY(0);
    top: auto;
    bottom: 1rem;
    right: 1rem;
    font-size: .68rem;
    padding: .4rem .65rem;
  }

  .portfolio-card .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.12) 62%, transparent 100%);
  }

  .portfolio-card .portfolio-card-bg img {
    transform: scale(1.04);
  }

  .portfolio-card.touch-active .portfolio-card-bg img {
    transform: scale(1.1);
  }

  .portfolio-lightbox {
    padding: 1rem;
  }

  .portfolio-lightbox-content {
    width: 100%;
    gap: .75rem;
  }

  .portfolio-lightbox-image {
    max-height: calc(100vh - 6rem);
    border-radius: 16px;
  }

  .portfolio-lightbox-caption {
    font-size: .88rem;
  }

  .portfolio-lightbox-close {
    top: .75rem;
    right: .75rem;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
}

/* ===== PRICING ===== */
.pricing { background: var(--primary); }

.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2.5rem;
  position: relative; transition: all .3s;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(108,99,255,.15), rgba(139,92,246,.1));
  border-color: var(--accent);
  transform: scale(1.03);
}

.pricing-card:hover { border-color: rgba(108,99,255,.4); box-shadow: var(--shadow); }

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  padding: .3rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}

.pricing-name { font-size: .85rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; margin: .5rem 0; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { color: #888; font-size: .9rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: #ccc; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

.btn-pricing {
  width: 100%; padding: .9rem; border-radius: 50px; font-weight: 700;
  font-size: .95rem; cursor: pointer; border: none; transition: all .2s;
}

.btn-pricing.primary {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: var(--white); box-shadow: 0 4px 20px rgba(108,99,255,.4);
}
.btn-pricing.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,.5); }

.btn-pricing.outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.15);
}
.btn-pricing.outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0d0d0d; }

.testimonials-header { text-align: center; margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 2rem;
  transition: all .3s;
}

.testimonial-card:hover { border-color: rgba(108,99,255,.3); transform: translateY(-3px); }

.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star-icon { width: 16px; height: 16px; }
.star-icon.filled { color: #fbbf24; fill: #fbbf24; }

.testimonial-card p { color: #bbb; font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: .8rem; }

.author-avatar-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(108,99,255,.3);
}

.author-name { font-weight: 700; font-size: .95rem; }
.author-role { color: var(--gray); font-size: .8rem; }

/* ===== FAQ ===== */
.faq { background: var(--primary); }

.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }

.faq-img {
  width: 100%; border-radius: 16px; margin-top: 2rem;
  object-fit: cover; aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

.faq-list { display: flex; flex-direction: column; gap: .8rem; }

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); overflow: hidden;
}

.faq-question {
  width: 100%; background: none; border: none; color: var(--white);
  padding: 1.2rem 1.5rem; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 600; font-family: var(--font);
  transition: color .2s;
}

.faq-question:hover { color: var(--accent); }
.faq-icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 1.5rem; color: #888; font-size: .9rem; line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.2rem; }

/* ===== CONTACT ===== */
.contact { background: #0d0d0d; }

.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(108,99,255,.15); border: 1px solid rgba(108,99,255,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { width: 20px; height: 20px; color: var(--accent); }
.contact-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.contact-item p { color: #888; font-size: .88rem; }

.contact-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: .4rem; }
.form-group label { font-size: .85rem; color: #aaa; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .8rem 1rem;
  color: var(--white); font-family: var(--font); font-size: .9rem;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select option { background: #1a1a2e; }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: var(--white); padding: 1rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 20px rgba(108,99,255,.4);
  align-self: flex-start;
  display: flex; align-items: center; gap: .5rem;
}
.btn-submit i { width: 18px; height: 18px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,.5); }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 6% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand p { color: #666; font-size: .9rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }

.social-links { display: flex; gap: .8rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .2s;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.footer-col h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: #666; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { color: #444; font-size: .85rem; }
.footer-bottom a { color: var(--accent); }

/* ===== FLOATING CTA ===== */
.floating-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .2s; animation: float 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); animation: none; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 7rem 6% 4rem; min-height: 100svh; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { margin: 0 auto; text-align: center; }
  .hero p { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-showcase { margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .process-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }
  .site-nav { padding: 1rem 6%; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 6.5rem 6% 3rem; }
  .hero-btns { width: 100%; justify-content: center; }
  .hero-btns a { width: 100%; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat h3 { font-size: 1.6rem; }
  section { padding: 4.5rem 6%; }
  .site-nav.menu-open .mobile-menu {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    padding: 0 6% 1.5rem;
    z-index: 1001;
  }
  .site-nav.menu-open .mobile-menu-inner {
    background: rgba(10,10,10,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }
  .site-nav.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  .site-nav.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}

/* ===== BRIEFING LINK ===== */
.btn-briefing-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--accent); font-size: .88rem; font-weight: 600;
  padding: .5rem 0; transition: gap .2s;
  border-bottom: none;
  align-self: flex-start; margin-top: .3rem;
}
