* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --royal-orange: #fd9317;
  --royal-orange-hover: #e68415;
  --royal-dark: #000000;
  --royal-light: #fef5eb;
  --royal-gold: #ffd700;
  --abacate-green: #34a853;
  --abacate-dark: #2e7d32;
  --text-dark: #222222;
  --text-light: #666666;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 35px rgba(253, 147, 23, 0.15);
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: var(--royal-orange);
}

/* ===== BOTÃO FLUTUANTE ===== */
.floating-buy-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  border: none;
  border-radius: 50px;
  padding: 18px 30px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(253, 147, 23, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.floating-buy-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 40px rgba(253, 147, 23, 0.6);
  background: linear-gradient(135deg, #ff6b00, var(--royal-orange));
  animation: none;
}

.floating-btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.floating-btn-text {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 900;
}

.floating-btn-price {
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 600;
}

.floating-buy-btn i {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* ===== CABEÇALHO ===== */
header {
  background-color: var(--royal-dark);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--royal-orange),
    var(--royal-orange-hover)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-dark);
  font-size: 1.8rem;
  box-shadow: var(--shadow);
}

.logo-text h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-text p {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 3px;
}

/* Navegação */
.main-nav {
  flex: 1;
  margin: 0 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.nav-link:hover {
  background-color: rgba(253, 147, 23, 0.1);
}

.nav-link.btn-nav {
  background-color: var(--royal-orange);
  color: var(--royal-dark);
  font-weight: 700;
}

.nav-link.btn-nav:hover {
  background-color: var(--royal-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(253, 147, 23, 0.3);
}

/* Botão Instagram */
.social .instagram-btn {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
  font-size: 0.9rem;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-rifa {
  background: linear-gradient(135deg, #000000 0%, #0a1f0a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-rifa::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(253, 147, 23, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.rifa-header {
  text-align: center;
  margin-bottom: 80px;
}

.rifa-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(253, 147, 23, 0.3);
}

.rifa-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.rifa-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.rifa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Informações */
.furia-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(253, 147, 23, 0.3);
  box-shadow: 0 10px 30px rgba(253, 147, 23, 0.2);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(253, 147, 23, 0.2),
    rgba(253, 147, 23, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-orange);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 700;
}

.info-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.autographs-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.autographs-info h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.player {
  background: rgba(253, 147, 23, 0.15);
  color: var(--royal-orange);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 1px solid rgba(253, 147, 23, 0.2);
}

.player:hover {
  background: rgba(253, 147, 23, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253, 147, 23, 0.3);
}

/* Meta Info */
.rifa-meta-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.meta-item i {
  color: var(--royal-orange);
  font-size: 1.8rem;
  width: 35px;
}

.meta-content {
  flex: 1;
}

.meta-label {
  display: block;
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.meta-value {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Display da Preview */
.jersey-display {
  position: relative;
}

.jersey-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.jersey-badge {
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  padding: 12px 25px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.jersey-image {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
}

.jersey-placeholder,
.ebook-cover {
  position: relative;
}

.jersey-placeholder i {
  font-size: 8rem;
  color: var(--royal-orange);
  margin-bottom: 25px;
  filter: drop-shadow(0 0 20px rgba(253, 147, 23, 0.4));
  animation: float 3s ease-in-out infinite;
}

.jersey-text,
.ebook-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.autograph-overlay {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(253, 147, 23, 0.95),
    rgba(255, 107, 0, 0.95)
  );
  color: var(--royal-dark);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ebook-cover {
  background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--royal-orange);
  position: relative;
  overflow: hidden;
}

.ebook-title h3 {
  font-size: 1.1rem;
  color: var(--royal-orange);
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.ebook-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.ebook-title p {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 10px;
}

.ebook-author {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 70px;
  height: 70px;
  background: rgba(253, 147, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--royal-orange);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-info p {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.4;
}

.jersey-details {
  padding: 35px;
}

.jersey-details h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.jersey-description {
  margin-bottom: 30px;
}

.jersey-description p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.jersey-details ul {
  list-style: none;
}

.jersey-details li {
  color: #ddd;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.jersey-details li:hover {
  padding-left: 10px;
}

.jersey-details li i {
  color: var(--royal-orange);
  width: 20px;
  font-size: 1.1rem;
}

/* ===== SEÇÃO E-BOOK ===== */
.ebook-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f0a 0%, var(--royal-dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 900;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.ebook-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ebook-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ebook-description h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
}

.ebook-description ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ebook-description li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #ddd;
  line-height: 1.6;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s;
}

.ebook-description li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.ebook-description li i {
  color: var(--royal-orange);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.ebook-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--royal-orange);
  box-shadow: 0 15px 30px rgba(253, 147, 23, 0.2);
}

.benefit-card i {
  font-size: 2.8rem;
  color: var(--royal-orange);
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 700;
}

.benefit-card p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ebook-image {
  position: relative;
}

.ebook-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(253, 147, 23, 0.3);
}

.ebook-purchase {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.ebook-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.old-price {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--royal-orange);
}

.discount-badge {
  background: #2ecc71;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.2rem;
}

.ebook-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.95rem;
  padding: 8px;
}

.feature i {
  color: var(--royal-orange);
  font-size: 1.3rem;
}

.ebook-buy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  border: none;
  border-radius: 15px;
  padding: 25px;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(253, 147, 23, 0.3);
  text-decoration: none;
  display: block;
}

.ebook-buy-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(253, 147, 23, 0.5);
  background: linear-gradient(135deg, #ff6b00, var(--royal-orange));
}

.ebook-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ebook-btn-content i {
  font-size: 1.5rem;
}

.ebook-btn-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.ebook-btn-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.ebook-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ebook-guarantee i {
  color: #2ecc71;
  font-size: 1.2rem;
}

/* ===== SEÇÃO SORTEIO/COMO FUNCIONA ===== */
.how-it-works {
  padding: 100px 0;
  background-color: var(--royal-light);
}

.how-it-works .section-title {
  color: var(--royal-dark);
}

.how-it-works .section-subtitle {
  color: var(--text-light);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: var(--white);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--royal-orange);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px rgba(253, 147, 23, 0.3);
}

.step-content h3 {
  color: var(--royal-dark);
  margin-bottom: 18px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== SEÇÃO DE COMPRA ===== */
.purchase-section {
  padding: 100px 0;
  background-color: var(--white);
}

.purchase-container {
  max-width: 900px;
  margin: 0 auto;
}

.purchase-header {
  text-align: center;
  margin-bottom: 60px;
}

.purchase-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: var(--royal-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 900;
  flex-wrap: wrap;
}

.price-info {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.price {
  color: var(--royal-orange);
  font-weight: 700;
  font-size: 1.6rem;
}

.chance-info {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Opções de Compra */
.purchase-options {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto 60px;
}

.option {
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  border: 3px solid var(--royal-orange);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.option.selected {
  background: linear-gradient(
    135deg,
    rgba(253, 147, 23, 0.08) 0%,
    rgba(253, 147, 23, 0.02) 100%
  );
}

.option-badge {
  position: absolute;
  top: 50px;
  right: -40px;
  background: linear-gradient(135deg, var(--royal-gold), #ffa500);
  color: var(--royal-dark);
  padding: 8px 50px;
  font-weight: 900;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.option-badge.popular {
  background: linear-gradient(135deg, var(--royal-gold), #ffa500);
}

.option-content h3 {
  color: var(--royal-dark);
  font-size: 2rem;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 900;
}

.option-price {
  color: var(--royal-orange);
  font-size: 3rem;
  font-weight: 900;
  margin: 20px 0;
  text-shadow: 0 2px 10px rgba(253, 147, 23, 0.2);
}

.option p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.option-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 18px 0;
  color: var(--text-dark);
  font-size: 1rem;
  justify-content: center;
  padding: 12px;
  background: rgba(253, 147, 23, 0.05);
  border-radius: 10px;
}

.option-feature i {
  color: var(--royal-orange);
  width: 25px;
  font-size: 1.2rem;
}

/* Seção de Pagamento */
.payment-section {
  background: linear-gradient(135deg, var(--royal-dark), #0a1f0a);
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow-strong);
  margin-top: 40px;
}

.payment-header {
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
}

.payment-header h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 900;
  flex-wrap: wrap;
}

.payment-header p {
  color: #ddd;
  font-size: 1.1rem;
}

.payment-details {
  max-width: 650px;
  margin: 0 auto;
}

.payment-summary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-summary h4 {
  color: var(--white);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  font-size: 1rem;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  padding-top: 25px;
  margin-top: 15px;
  border-top: 2px solid var(--royal-orange);
}

.summary-item strong {
  color: var(--royal-orange);
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-item.total strong {
  font-size: 2rem;
}

/* Formulário de Dados */
.buyer-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.buyer-info h4 {
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
}

.buyer-info > p {
  color: #ddd;
  margin-bottom: 25px;
  font-size: 1rem;
  text-align: center;
  padding: 15px;
  background: rgba(253, 147, 23, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--royal-orange);
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  display: block;
  color: #ddd;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--royal-orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(253, 147, 23, 0.2);
}

.form-group input::placeholder {
  color: #888;
}

.form-hint {
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

.form-benefits {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: #ddd;
  font-size: 0.95rem;
  padding: 8px;
}

.benefit i {
  color: #2ecc71;
  font-size: 1.1rem;
}

/* Botão Abacate Pay */
.abacatepay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: linear-gradient(
    135deg,
    var(--abacate-green),
    var(--abacate-dark)
  );
  color: white;
  padding: 28px 35px;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  transition: all 0.3s;
  margin: 35px 0;
  box-shadow: 0 12px 30px rgba(52, 168, 83, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
}

.abacatepay-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(52, 168, 83, 0.5);
  background: linear-gradient(135deg, #3cb371, #2e8b57);
}

.ap-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.ap-text {
  text-align: left;
}

.ap-title {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.ap-subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Termos */
.terms-agreement {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-agreement input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-agreement label {
  color: #ccc;
  font-size: 0.95rem;
  cursor: pointer;
  flex: 1;
  line-height: 1.5;
}

.terms-link {
  color: var(--royal-orange);
  text-decoration: none;
  font-weight: 600;
}

.terms-link:hover {
  text-decoration: underline;
}

.payment-security {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.95rem;
}

.security-item i {
  color: var(--royal-orange);
  font-size: 1.4rem;
}

/* ===== INFORMAÇÕES IMPORTANTES ===== */
.important-info {
  padding: 100px 0;
  background-color: var(--white);
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
}

.info-card-large {
  background: var(--royal-light);
  border-radius: 25px;
  padding: 45px;
  box-shadow: var(--shadow);
  border: 2px solid #eee;
  transition: all 0.3s;
}

.info-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--royal-orange);
}

.info-card-large h3 {
  color: var(--royal-dark);
  font-size: 1.7rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.info-card-large ul {
  list-style: none;
}

.info-card-large li {
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  line-height: 1.7;
  font-size: 0.98rem;
}

.info-card-large li i {
  color: var(--royal-orange);
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.1rem;
}

/* ===== RODAPÉ ===== */
footer {
  background-color: var(--royal-dark);
  color: var(--white);
  padding: 80px 0 35px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo-icon {
  width: 55px;
  height: 55px;
  background: rgba(253, 147, 23, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-orange);
  font-size: 1.6rem;
}

.footer-logo-text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.footer-logo-text p {
  font-size: 0.85rem;
  color: #aaa;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.3rem;
  color: var(--royal-orange);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 14px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--royal-orange);
  padding-left: 5px;
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.instagram-link {
  color: var(--royal-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.instagram-link:hover {
  gap: 15px;
}

.abacatepay-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--abacate-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.abacatepay-logo i {
  font-size: 1.6rem;
}

.payment-icons {
  display: flex;
  gap: 18px;
  font-size: 2rem;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 12px;
  font-style: italic;
}

/* ===== MODAL DE SUCESSO ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 30px;
  padding: 55px 45px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  font-size: 3.5rem;
  color: var(--royal-dark);
  box-shadow: 0 12px 35px rgba(253, 147, 23, 0.4);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.success-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--royal-dark);
  font-weight: 900;
}

.success-message {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.7;
}

.loading-spinner {
  margin: 35px 0;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--royal-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 25px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner p {
  color: var(--text-light);
  font-size: 1.05rem;
}

#countdown {
  color: var(--royal-orange);
  font-weight: 700;
  font-size: 1.3rem;
}

.modal-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-orange), #ff6b00);
  color: var(--royal-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(253, 147, 23, 0.4);
  background: linear-gradient(135deg, #ff6b00, var(--royal-orange));
}

.btn-secondary {
  background: var(--royal-dark);
  color: white;
  border: 2px solid var(--royal-orange);
}

.btn-secondary:hover {
  background: rgba(253, 147, 23, 0.1);
  transform: translateY(-3px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .rifa-content,
  .ebook-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .info-container {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--royal-dark);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu {
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .floating-buy-btn {
    bottom: 20px;
    right: 20px;
    left: 20px;
    min-width: auto;
    padding: 16px 20px;
  }

  .rifa-title {
    font-size: 2.5rem;
  }

  .rifa-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .purchase-header h2 {
    font-size: 2.2rem;
  }

  .payment-section {
    padding: 35px 25px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }

  .abacatepay-btn {
    flex-direction: column;
    gap: 15px;
    padding: 25px 20px;
  }

  .ap-text {
    text-align: center;
  }

  .modal-content {
    padding: 40px 25px;
  }

  .modal-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 100%;
  }

  .info-container {
    grid-template-columns: 1fr;
  }

  .info-card-large {
    padding: 30px 25px;
  }

  .players-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-content {
    gap: 15px;
  }

  .social {
    order: 3;
    flex-basis: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }

  .logo {
    flex: 1;
  }

  .menu-toggle {
    order: 2;
  }

  .rifa-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .jersey-placeholder i {
    font-size: 5rem;
  }

  .option-content h3 {
    font-size: 1.6rem;
  }

  .option-price {
    font-size: 2.5rem;
  }

  .new-price {
    font-size: 2.5rem;
  }

  .ebook-title h2 {
    font-size: 1.8rem;
  }

  .terms-agreement {
    flex-direction: column;
    align-items: flex-start;
  }
}
