﻿:root {
  --black: #111111;
  --orange: #ff6b00;
  --orange-soft: #ff8c3a;
  --gray: #f2f2f2;
  --white: #ffffff;
  --dark-card: #1a1a1a;
  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  color: var(--white);
}

.menu {
  display: flex;
  gap: 20px;
  color: #e8e8e8;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, #0c0c0c 0%, #111111 54%, #202020 100%);
}

.hero-bg,
.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-bg {
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.36), transparent 35%),
    radial-gradient(circle at 80% 12%, rgba(255, 107, 0, 0.22), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero-bg::before {
  width: 520px;
  height: 520px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, 0.25);
  transform: translate(-34vw, -12vh);
  animation: drift-left 9s ease-in-out infinite;
}

.hero-bg::after {
  width: 430px;
  height: 430px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translate(31vw, 20vh);
  animation: drift-right 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: left;
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-soft);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange-soft);
}

.hero h1 {
  margin-top: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.96;
  max-width: 12ch;
}

.subtitle {
  margin-top: 20px;
  max-width: 62ch;
  color: #d8d8d8;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.34);
}

.btn-primary:hover {
  background: #ff7d21;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover {
  border-color: var(--orange-soft);
  color: var(--orange-soft);
}

.btn-lg {
  min-height: 50px;
  padding-inline: 1.5rem;
}

.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.hero-highlights li {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ececec;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--gray);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.card p {
  color: #3c3c3c;
}

.card-dark {
  background: var(--dark-card);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card-dark p {
  color: #d9d9d9;
}

.benefits-grid .card {
  position: relative;
  overflow: hidden;
}

.benefits-grid .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.gallery-subtitle {
  max-width: 62ch;
  margin: -10px 0 22px;
  color: #4a4a4a;
  font-weight: 600;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-card-featured img {
  aspect-ratio: 4 / 3;
}

.stats {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats div {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 18px;
}

.stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}

.stats span {
  display: block;
  color: #444;
  font-weight: 600;
}

.testimonial {
  border-left: 4px solid var(--orange);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.plans-grid {
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan .price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--orange-soft);
}

.plan .price span {
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  color: #dedede;
  margin-left: 6px;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.plan li {
  position: relative;
  padding-left: 20px;
  color: #ddd;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.plan-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  color: var(--black);
  transform: translateY(-8px);
}

.plan-featured .price {
  color: var(--orange);
}

.plan-featured .price span {
  color: #5a5a5a;
}

.plan-featured li {
  color: #2f2f2f;
}

.plan-featured .btn-ghost {
  color: var(--black);
  border-color: rgba(17, 17, 17, 0.2);
}

.badge {
  display: inline-block;
  width: fit-content;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.cta-section {
  background: linear-gradient(130deg, #111111 0%, #1b1b1b 58%, #2d1808 100%);
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  letter-spacing: 0.02em;
}

.cta-content p {
  max-width: 58ch;
  margin: 10px auto 26px;
  color: #dddddd;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  padding: 0 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 34px 18px 2px;
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 16px;
  color: #4a4a4a;
}

.footer {
  background: #0f0f0f;
  color: #d8d8d8;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer h4 {
  color: var(--orange-soft);
  margin-bottom: 6px;
}

.copyright {
  text-align: center;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 26px rgba(255, 107, 0, 0.42);
  animation: pulse 2.1s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift-left {
  0%,
  100% {
    transform: translate(-34vw, -12vh) scale(1);
  }
  50% {
    transform: translate(-28vw, -7vh) scale(1.06);
  }
}

@keyframes drift-right {
  0%,
  100% {
    transform: translate(31vw, 20vh) scale(1);
  }
  50% {
    transform: translate(25vw, 14vh) scale(1.05);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .studio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-featured {
    grid-column: 1 / -1;
  }

  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    min-height: 70px;
  }

  .topbar .btn {
    display: none;
  }

  .hero-content {
    padding: 72px 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .gallery-subtitle {
    margin-bottom: 16px;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-featured {
    grid-column: auto;
  }

  .three-cols,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .plan-featured {
    transform: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
