@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-gold: #c9a74a;
  --text-muted: #d0d0d0;
  --text-subtle: #b4b4b4;
  --surface-dark: #0a0a0a;
  --surface-darker: #111111;
  --border-soft: rgba(201, 167, 74, 0.25);
  --border-strong: rgba(201, 167, 74, 0.4);
  --shadow: 0 4px 20px rgba(201, 167, 74, 0.12);
  --radius: 10px;
  --transition: all 0.3s ease;
  --header-height: 72px;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.8rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-black);
  color: var(--primary-white);
  line-height: var(--line-height);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-gold);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1rem auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: 2px solid var(--accent-gold);
  background: transparent;
  color: var(--primary-white);
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: rgba(201, 167, 74, 0.5);
}

.highlight {
  color: var(--accent-gold);
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

.header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(201, 167, 74, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-gold);
}

.logo-header {
  width: 60px;
  height: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--primary-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary-white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  padding: 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--accent-gold);
}

/* Hero */
.hero {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(201, 167, 74, 0.18), transparent 55%),
    radial-gradient(900px circle at 90% 20%, rgba(201, 167, 74, 0.08), transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(12, 12, 12, 0.92));
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(201, 167, 74, 0.08) 70%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 720px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-body);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.stat-label {
  font-size: var(--font-size-small);
  color: var(--text-subtle);
}

/* About */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(201, 167, 74, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 167, 74, 0.3);
}

.credential-badge {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.about-image {
  text-align: center;
}

.rafael-photo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  border: 3px solid var(--accent-gold);
  box-shadow: var(--shadow);
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--primary-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(145deg, #111111, #0a0a0a);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 167, 74, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 167, 74, 0.08), transparent);
  transition: var(--transition);
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  background: rgba(201, 167, 74, 0.12);
  border-radius: 14px;
}

.service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent-gold);
}

.service-title {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  color: var(--text-muted);
  position: relative;
}

.service-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.section-cta {
  margin-top: 2rem;
}

.section-cta.center {
  text-align: center;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Plans */
.plans {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.plans::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(800px circle at 15% 15%, rgba(201, 167, 74, 0.12), transparent 60%),
    radial-gradient(700px circle at 85% 10%, rgba(201, 167, 74, 0.08), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.plans::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.05;
  pointer-events: none;
}

.plans .container {
  position: relative;
  z-index: 1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.plan-card {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.98));
  padding: 2.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 167, 74, 0.22);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(201, 167, 74, 0.18), transparent 55%);
  opacity: 0.35;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.plan-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(201, 167, 74, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.plan-card > *:not(.plan-card-link) {
  position: relative;
  z-index: 1;
}

.plan-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border-radius: inherit;
  text-decoration: none;
}

.plan-card-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 167, 74, 0.7);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 74, 0.6);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.plan-card:hover::before {
  opacity: 0.6;
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-featured {
  border-color: rgba(201, 167, 74, 0.65);
  box-shadow: 0 32px 70px rgba(201, 167, 74, 0.18);
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.98), rgba(10, 10, 10, 0.98));
}

.plan-featured::before {
  opacity: 0.55;
}

.plan-badge {
  align-self: flex-start;
  background: rgba(201, 167, 74, 0.2);
  color: var(--accent-gold);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 167, 74, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.plan-header {
  display: grid;
  gap: 0.55rem;
}

.plan-title {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--accent-gold);
}

.plan-subtitle,
.plan-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-white);
}

.plan-copy {
  color: #c9c9c9;
  font-size: 0.98rem;
  line-height: 1.6;
}

.plan-body {
  display: grid;
  gap: 0.9rem;
  flex: 1;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.55rem;
  color: #cfcfcf;
  line-height: 1.5;
}

.plan-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  top: 0.2rem;
  opacity: 0.85;
}

.plan-note {
  font-size: 0.9rem;
  color: #e0cf9a;
  background: rgba(201, 167, 74, 0.1);
  border: 1px solid rgba(201, 167, 74, 0.25);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.plan-cta {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 3;
}

.plan-rule {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.plan-support {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: #cfcfcf;
}

.plans-cta {
  margin-top: 2rem;
  text-align: center;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.plans-cta-note {
  font-size: 0.95rem;
  color: #cfcfcf;
}

@media (min-width: 1100px) {
  .plan-featured {
    transform: scale(1.02);
  }

  .plan-featured:hover {
    transform: scale(1.02) translateY(-6px);
  }
}

/* Results */
.results {
  padding: 100px 0;
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
}

.results-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.result-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius);
}

.result-slide {
  display: none;
  padding: 2rem;
  background: linear-gradient(145deg, #111111, #0a0a0a);
  border: 1px solid rgba(201, 167, 74, 0.2);
}

.result-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.before,
.after {
  text-align: center;
}

.before h4,
.after h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.before {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.before img {
  width: min(320px, 80%);
  height: auto;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
}

.result-description h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 167, 74, 0.35);
  transition: var(--transition);
}

.dot.active::before,
.dot:hover::before {
  background: var(--accent-gold);
}

/* Prints */
.prints {
  padding: 100px 0;
  background: var(--primary-black);
}

.prints-grid {
  display: grid;
  gap: 1.5rem;
}

.prints-ads,
.prints-whats,
.prints-videos {
  display: grid;
  gap: 1rem;
}

.prints-ads {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.prints-whats {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.prints-videos {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.print-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.video-box {
  background: linear-gradient(145deg, #1c1c1c, #111111);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(201, 167, 74, 0.2);
}

.video-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-wrapper iframe,
.video-wrapper .video-lite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lite {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.video-lite::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--primary-black);
  font-size: 1.5rem;
  z-index: 1;
}

.video-play::before {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: var(--shadow);
  position: absolute;
  z-index: -1;
}

.prints-contact-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Stats */
.stats {
  padding: 3rem 0 5rem;
  background: var(--primary-black);
}

.plans-stats {
  padding: 0;
  margin: 2rem 0 2.5rem;
  background: transparent;
}

.stats-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 160px;
  text-align: center;
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-white);
  line-height: 1;
}

.stat-item p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-subtle);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 167, 74, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-white);
  transition: var(--transition);
  text-align: left;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 0 1rem 0;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(201, 167, 74, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 167, 74, 0.1);
  color: #9b9b9b;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(201, 167, 74, 0.12);
  border: 1px solid rgba(201, 167, 74, 0.3);
}

.social-link img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* Floating buttons */
.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.whatsapp-bubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-bubble a:hover {
  transform: scale(1.05);
}

.scroll-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Agendar consultoria page */
body.page-consultoria {
  background: radial-gradient(circle at top, rgba(201, 167, 74, 0.12), transparent 55%),
    linear-gradient(160deg, #0b0b0b 0%, #000000 60%);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.progress {
  flex: 1;
  min-width: 240px;
  max-width: 520px;
}

.progress-label {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 10%;
  background: var(--accent-gold);
  border-radius: 999px;
  transition: var(--transition);
}

.progress-steps {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
  color: #8c8c8c;
}

.progress-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(201, 167, 74, 0.3);
}

.progress-step.active {
  background: rgba(201, 167, 74, 0.2);
  border-color: var(--accent-gold);
  color: var(--primary-white);
}

.progress-step.completed {
  background: var(--accent-gold);
  color: var(--primary-black);
  border-color: var(--accent-gold);
}

.form-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.form-card {
  width: 100%;
  max-width: 780px;
  background: rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(201, 167, 74, 0.2);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.form-card.thankyou {
  border-color: rgba(201, 167, 74, 0.35);
}

.form-card.thankyou .question-title {
  font-size: 2.4rem;
}

.form-card.thankyou .question-hint {
  font-size: 1.05rem;
  color: #d7d7d7;
}

.question-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bdbdbd;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.question-number {
  background: rgba(201, 167, 74, 0.2);
  color: var(--accent-gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.question-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.question-hint {
  font-size: 0.95rem;
  color: #9b9b9b;
  margin-bottom: 24px;
}

.question-body {
  min-height: 120px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 167, 74, 0.25);
  border-radius: var(--radius);
  color: var(--primary-white);
  font-size: 1rem;
  transition: var(--transition);
}

.input-field:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 167, 74, 0.2);
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 167, 74, 0.2);
  border-radius: var(--radius);
  color: var(--primary-white);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}

.option-btn:hover,
.option-btn:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(201, 167, 74, 0.2);
}

.option-btn.selected {
  background: rgba(201, 167, 74, 0.15);
  border-color: var(--accent-gold);
}

.option-letter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(201, 167, 74, 0.2);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: transparent;
  color: #9b9b9b;
}

.error-message {
  margin-top: 16px;
  color: #f1b7b7;
  font-size: 0.95rem;
  min-height: 22px;
}

.thankyou-social {
  margin-top: 24px;
}

.thankyou-social-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.social-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 167, 74, 0.2);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  transition: var(--transition);
}

.social-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 167, 74, 0.15);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.youtube {
  background: #ff3b30;
}

.social-card p {
  color: #bdbdbd;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

.social-btn {
  margin-top: auto;
}

.thankyou-cta {
  margin-top: 16px;
  display: inline-flex;
}

.form-footer {
  text-align: center;
  padding: 24px 20px 32px;
  color: #8c8c8c;
  font-size: 0.85rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Legal pages */
body.page-legal {
  background: #000;
}

.legal-hero {
  padding: 40px 0 10px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul {
  list-style: disc inside;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2rem 0;
}

.back-to-top {
  text-align: center;
  margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    max-width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .prints-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .prints-ads,
  .prints-whats {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-bubble {
    right: 16px;
    bottom: 16px;
  }

  .scroll-to-top {
    right: 16px;
    bottom: 88px;
  }
}

@media (max-width: 640px) {
  .prints-ads,
  .prints-whats,
  .prints-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 92px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .form-header {
    padding: 20px;
  }

  .form-card {
    padding: 24px;
  }

  .question-title {
    font-size: 1.5rem;
  }

  .form-card.thankyou .question-title {
    font-size: 1.9rem;
  }

  .plan-card {
    padding: 1.8rem;
  }

  .plan-cta {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .plan-card:hover,
  .plan-featured,
  .plan-featured:hover {
    transform: none;
  }
}
