:root {
  --bg: #050505;
  --bg-soft: #101010;
  --card: #151515;
  --card-2: #1b1b1b;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --muted-2: #808080;
  --line: rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.08);
  --accent: #f2c400;
  --white: #ffffff;
  --black: #111111;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.rpro-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */

.rpro-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.rpro-nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rpro-logo img {
  max-height: 46px;
  display: block;
}

.rpro-menu {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.rpro-menu a {
  transition: .2s;
}

.rpro-menu a:hover {
  color: var(--text);
}

/* HERO HOME */

.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}

.hero-tag,
.section-title span,
.cta-box span {
  display: inline-block;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -3px;
}

.hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
  max-width: 640px;
}

.hero-search {
  margin-top: 32px;
  display: flex;
  background: #fff;
  padding: 8px;
  border-radius: 18px;
  max-width: 650px;
}

.hero-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 0 18px;
  color: #111;
}

.hero-search button,
.cta-button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 17px 24px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.hero-search button:hover,
.cta-button:hover {
  opacity: .86;
}

.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights span {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  min-height: 520px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  padding: 24px;
}

.photo-preview {
  height: 100%;
  border-radius: 28px;
  background: #0d0d0d;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.preview-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(0,0,0,.65);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.preview-box {
  height: 360px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.04)),
    repeating-linear-gradient(45deg, #191919, #191919 12px, #111 12px, #111 24px);
}

.preview-info {
  padding: 22px 4px 0;
}

.preview-info strong {
  font-size: 22px;
}

.preview-info p {
  color: var(--muted);
  line-height: 1.5;
}

/* SECTIONS */

.section {
  padding: 84px 0;
}

.section-title {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-title h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 250px;
}

.step-card b {
  color: var(--muted);
  font-size: 14px;
}

.step-card h3 {
  font-size: 23px;
  margin: 22px 0 12px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.55;
}

.dark-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 650px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #111;
  white-space: nowrap;
}

/* BUSCA */

.search-hero {
  padding: 70px 0 54px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 28%),
    #080808;
  border-bottom: 1px solid var(--line);
}

.search-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -3px;
}

.search-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.search-main-form {
  margin-top: 28px;
}

.album-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

.album-result-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.album-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  flex-shrink: 0;
}

.album-result-info {
  flex: 1;
}

.album-result-info h3 {
  margin: 0 0 8px;
}

.album-result-info p {
  margin: 0;
  color: var(--muted);
}

.album-meta {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 14px;
}

.album-open-btn {
  background: #fff;
  color: #111;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* PORTAL DO ATLETA */

.athlete-page {
  background: #050505;
}

.athlete-hero {
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at 18% 20%, rgba(242,196,0,.10), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.08), transparent 28%),
    #080808;
  border-bottom: 1px solid var(--line);
}

.athlete-box {
  display: flex;
  align-items: center;
  gap: 28px;
}

.athlete-avatar {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 900;
  flex-shrink: 0;
}

.athlete-box h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -2px;
}

.athlete-box p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
}

.athlete-stats {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.athlete-stats span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* GRID DE FOTOS */

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.photo-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: .25s;
  box-shadow: 0 8px 22px rgba(0,0,0,.20);
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.18);
}

.photo-card a:first-child {
  display: block;
  background: #111;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  display: block;
  background: #111;
}

.photo-actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-actions strong {
  display: block;
  font-size: 15px;
}

.photo-actions a {
  display: block;
  text-align: center;
  background: #fff;
  color: #111;
  padding: 13px;
  border-radius: 13px;
  font-weight: 800;
  transition: .2s;
}

.photo-actions a:hover {
  background: var(--accent);
  color: #111;
}

/* EMPTY BOX */

.empty-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  color: var(--muted);
}

.empty-box h2 {
  color: var(--text);
  margin-top: 0;
}

/* CARRINHO */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cart-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.cart-item-side {
  text-align: right;
  min-width: 130px;
}

.cart-item-side a {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.cart-summary {
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  margin-top: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
}

.summary-row.total {
  font-size: 20px;
  border-bottom: 0;
}

.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  margin-top: 18px;
}

/* FOOTER */

.rpro-footer {
  padding: 58px 0 24px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  color: var(--muted);
}

.footer-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  transition: .2s;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  color: #777;
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 22px;
  font-size: 14px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .rpro-nav {
    height: auto;
    padding: 18px 0;
    gap: 16px;
    align-items: flex-start;
  }

  .rpro-menu {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .athlete-box {
    align-items: flex-start;
  }

  .photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .rpro-container {
    width: min(100% - 24px, 1180px);
  }

  .rpro-nav {
    flex-direction: column;
  }

  .rpro-menu {
    justify-content: flex-start;
    font-size: 14px;
  }

  .hero h1,
  .search-hero h1,
  .athlete-box h1 {
    letter-spacing: -2px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search input {
    padding: 16px;
  }

  .hero-search button {
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .athlete-box {
    flex-direction: column;
  }

  .athlete-avatar {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    font-size: 40px;
  }

  .photos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-card img {
    aspect-ratio: 4 / 5;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-side {
    text-align: left;
  }

  .album-result-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .album-open-btn {
    width: 100%;
    text-align: center;
  }
}

.checkout-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.checkout-form h2 {
  margin-top: 0;
}

.checkout-form label {
  display: block;
  margin: 18px 0 8px;
  color: var(--muted);
}

.checkout-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: #fff;
  border-radius: 14px;
  padding: 15px;
  font-size: 16px;
  outline: none;
}

.checkout-form button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.pix-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.pix-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.pix-box h2 {
  margin-top: 0;
}

.pix-box hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.pix-status {
  display: inline-block;
  background: rgba(242,196,0,.12);
  color: var(--accent);
  border: 1px solid rgba(242,196,0,.35);
  padding: 9px 14px;
  border-radius: 999px;
  margin-top: 8px;
}

.pix-info {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.pix-info span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.pix-copy {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.pix-copy input {
  flex: 1;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
}

.pix-copy button,
.whatsapp-button {
  border: 0;
  background: #fff;
  color: #111;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.pix-note {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 22px;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #06170c;
}

@media (max-width: 800px) {
  .pix-layout {
    grid-template-columns: 1fr;
  }

  .pix-copy {
    flex-direction: column;
  }
}
.package-access-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.package-access-form,
.package-access-info {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.package-access-form label {
  display: block;
  color: var(--muted);
  margin: 18px 0 8px;
  font-weight: 800;
}

.package-access-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: #fff;
  border-radius: 14px;
  padding: 15px;
  font-size: 16px;
  outline: none;
}

.package-access-form button {
  width: 100%;
  margin-top: 24px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.package-access-info h2 {
  margin-top: 0;
  font-size: 34px;
  letter-spacing: -1px;
}

.package-access-info p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 800px) {
  .package-access-card {
    grid-template-columns: 1fr;
  }
}
.package-hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(circle at 18% 20%, rgba(242,196,0,.12), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.08), transparent 28%),
    #080808;
  border-bottom: 1px solid var(--line);
}

.package-hero-box {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
}

.package-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -3px;
}

.package-hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.package-meta span {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.package-download-box {
  background: #fff;
  color: #111;
  border-radius: 26px;
  padding: 24px;
}

.package-download-box strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.package-download-box p {
  color: #475569;
  font-size: 15px;
}

.package-download-btn {
  display: block;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 15px;
  border-radius: 14px;
  font-weight: 900;
  margin-top: 18px;
}

.package-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.package-photo-card {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: .25s;
}

.package-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.rpro-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rpro-lightbox.active {
  display: flex;
}

.rpro-lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  border: 0;
  background: #fff;
  color: #111;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 850px) {
  .package-hero-box {
    grid-template-columns: 1fr;
  }

  .package-photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .package-hero h1 {
    letter-spacing: -2px;
  }

  .package-photos-grid {
    grid-template-columns: 1fr;
  }
}