:root {
  --primary-color-bg: #11110e;
  --secondary-color: #f3eddf;
}

header {
  top: 0;
}

.first-section {
  padding-top: 90px;
}

.text-white {
  color: var(--secondary-color);
}

.bg-bound {
  background-color: var(--secondary-color);
}

.primary-button {
  background-color: var(--primary-color-bg);
}

.secondary-button {
  background-color: var(--secondary-color);
  color: var(--primary-color-bg);
}

.images-stats {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.numbers-stats {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 3rem;
  gap: 3rem;
  color: var(--primary-color-bg);
}

.container-main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.container-main-child {
  flex-direction: column;
  display: flex;
  justify-content: center;
  width: 48%;

  p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.images-stats img {
  max-width: 32%;
  height: auto;
  margin: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .container-main-child {
    width: 95%;
  }

  .images-stats img {
    max-width: 100%;
  }
}

/* FAQ Styles */
#faq {
  scroll-margin-top: 100px;
}

#faq .text-center p {
  font-size: 1.5rem !important;
  line-height: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

#faq [data-accordion-target] {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  font-size: 1.375rem !important;
  line-height: 1.6;
}

#faq [data-accordion-target]:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#faq [data-accordion-target][aria-expanded="true"] {
  background-color: var(--secondary-color);
  color: var(--primary-color-bg);
  font-weight: 600;
}

#faq [data-accordion-target] svg {
  transition: transform 0.3s ease;
  width: 0.75rem !important; /* 12px */
  height: 0.75rem !important; /* 12px */
  min-width: 0.75rem;
  min-height: 0.75rem;
  max-width: 0.75rem;
  max-height: 0.75rem;
}

#faq [data-accordion-target][aria-expanded="true"] svg {
  transform: rotate(0deg) !important;
}

#faq [data-accordion-target][aria-expanded="false"] svg {
  transform: rotate(-90deg) !important;
}

#faq [id^="accordion-flush-body-"] {
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: -0.5rem;
  border: 1px solid #e9ecef;
  border-top: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#faq [id^="accordion-flush-body-"] .py-5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#faq [id^="accordion-flush-body-"] p {
  font-size: 1.25rem !important; /* 20px - un poco más grande */
  line-height: 1.7;
  margin-bottom: 1rem;
}

#faq a {
  color: var(--primary-color-bg);
  font-weight: 600;
  text-decoration: underline;
}

#faq a:hover {
  color: #333;
}

.number-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.number-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.number-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Social Media Buttons */
.social-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem 3rem !important;
  margin: 0 0.5rem !important;
  font-size: 1.875rem !important;
  font-weight: 500 !important;
  border-radius: 4.5rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  overflow: hidden;
  width: auto !important;
  max-width: none !important;
  flex-shrink: 0;
}

.social-button svg {
  width: 2rem !important; /* 32px - smaller icon */
  height: 2rem !important;
  margin-right: 0.5rem !important;
}

/* Hide the text divs completely and add text directly to button */
.social-button .text-left {
  display: none !important;
}

.instagram-button {
  background: linear-gradient(45deg, #405de6, #833ab4, #e1306c) !important;
}

.instagram-button:hover {
  background: linear-gradient(45deg, #5851db, #c13584, #fd1d1d) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(131, 58, 180, 0.4) !important;
}

.tiktok-button {
  background: linear-gradient(45deg, #ff0050, #00f2ea) !important;
}

.tiktok-button:hover {
  background: linear-gradient(45deg, #e6004a, #00d9cc) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 0, 80, 0.4) !important;
}

/* Container adjustments to ensure buttons stay in row */
.flex.flex-col.md\\:flex-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
}

@media screen and (max-width: 768px) {
  .social-buttons {
    flex-direction: column;
    gap: 2rem;
  }
}
.social-buttons {
  display: flex;
}

.social-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.3s;
}

.social-button:hover:before {
  left: 100%;
}

/* Tablet styles - mantiene row */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .flex.flex-col.md\\:flex-row {
    flex-direction: row !important;
    gap: 0.5rem !important;
  }

  .social-button {
    margin: 0 0.25rem !important;
    padding: 1rem 2rem !important;
    font-size: 1.5rem !important;
  }
}

/* Mobile styles - cambia a column */
@media screen and (max-width: 768px) {
  .flex.flex-col.md\\:flex-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .social-button {
    margin: 0 !important;
    padding: 1rem 2rem !important;
    font-size: 1.25rem !important;
    width: 250px !important;
  }

  .social-button svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
}

/* Sponsors Section */
#patrocinadores {
  position: relative;
}

.sponsors-pricing-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none !important;
}

.sponsor-option-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sponsor-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.sponsor-option-card:hover::before {
  left: 100%;
}

.sponsor-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sponsor-cta-section {
  position: relative;
  overflow: hidden;
}

.sponsor-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse-sponsor 4s ease-in-out infinite;
}

@keyframes pulse-sponsor {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  #patrocinadores .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #patrocinadores h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .sponsor-pricing-card {
    padding: 1.5rem;
  }
}

/* Custom Stone/Bone Color Classes */
.text-stone-500 {
  color: #78716c;
}

.text-stone-600 {
  color: #57534e;
}

.text-stone-700 {
  color: #44403c;
}

.text-stone-800 {
  color: #292524;
}

/* Custom Gradient for CTA Section */
.bg-purple-pink-gradient {
  background: linear-gradient(45deg, #9333ea, #ec4899);
}
