/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d4a574;
  --secondary-color: #2c2c2c;
  --text-color: #333;
  --light-bg: #f8f8f8;
  --white: #ffffff;
  --accent-color: #c19660;
  --transition: all 0.3s ease;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo central y menú estilo marisasoler.com */
.logo-container {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 900;
}

.main-logo {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  display: inline-block;
}

.main-logo a {
  color: var(--white);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.main-logo a:hover {
  color: var(--primary-color);
}

/* Botón de menú flotante */
.menu-button {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.menu-button:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

.menu-button span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin: 3px 0;
  transition: var(--transition);
}

/* Menú overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  width: 80%;
  max-width: 800px;
  text-align: center;
}

.menu-header {
  margin-bottom: 40px;
  position: relative;
}

.menu-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  letter-spacing: 3px;
  font-weight: 600;
}

.close-menu {
  position: absolute;
  top: -10px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-menu:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.main-nav ul {
  list-style: none;
}

.main-nav ul li {
  margin-bottom: 20px;
}

.main-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.main-nav ul li a:hover {
  color: var(--primary-color);
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section con Video */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sección About */
.about {
  padding: 80px 0;
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 400;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sección Metodología */
.methodology {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.methodology h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.method-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
  transition: var(--transition);
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-card:hover .method-image {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.method-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.method-card p {
  color: #666;
  line-height: 1.8;
}

/* Sección Formación */
.formation {
  padding: 80px 0;
  background-color: var(--white);
}

.formation h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.formation-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
  color: #666;
}

.modules-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-color);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.module-item {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.module-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(212, 165, 116, 0.2);
}

.module-item h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.module-item p {
  color: #666;
  font-size: 0.95rem;
}

.presential-module {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 60px;
}

.presential-module h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.presential-module p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section {
  text-align: center;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #666;
}

.cta-section h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* Sección Trayectoria */
.trajectory {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.trajectory h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 0 0 100px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
}

.timeline-year::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-year::after {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-year::after {
  left: -10px;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 30px;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.8;
}

/* Sección Testimonios */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-video {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 30px;
}

.testimonial-content h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-content p {
  color: #666;
  line-height: 1.8;
  font-style: italic;
}

/* Sección Instagram */
.instagram {
  padding: 60px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.instagram h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.instagram-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.8;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-cta:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 50px;
  }

  .timeline-year {
    text-align: left;
    margin-bottom: 20px;
  }

  .timeline-year::after {
    left: -30px !important;
    right: auto !important;
  }

  .timeline-content {
    margin: 0;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .agent-button {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }

  .agent-text {
    display: none;
  }

  .agent-modal-content {
    width: 95%;
    margin: 20px;
  }

  .agent-modal-header,
  .agent-modal-body {
    padding: 20px;
  }

  .agent-info {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botón flotante de agente comercial */
.agent-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.agent-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.headphones-icon {
  font-size: 1.5rem;
  animation: bounce 1s infinite alternate;
}

.agent-text {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}

/* Modal de Agente Comercial */
.agent-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.agent-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.agent-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.agent-modal-overlay.active .agent-modal-content {
  transform: translateY(0);
}

.agent-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 15px;
  border-bottom: 1px solid #eee;
}

.agent-modal-header h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.5rem;
}

.close-agent-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-agent-modal:hover {
  color: var(--primary-color);
}

.agent-modal-body {
  padding: 25px 30px 30px;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 15px;
}

.agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-details h3 {
  margin: 0 0 5px 0;
  color: var(--text-color);
  font-size: 1.2rem;
}

.agent-details p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 0.9rem;
}

.status-online {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #25d366;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.contact-options h4 {
  margin: 0 0 20px 0;
  color: var(--text-color);
  font-size: 1.1rem;
}

.contact-method {
  margin-bottom: 15px;
}

.contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}

.phone-btn:hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

.email-btn:hover {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--text-color);
}

.contact-info small {
  color: #666;
  font-size: 0.85rem;
}

.agent-message {
  margin-top: 25px;
  padding: 20px;
  background: rgba(37, 211, 102, 0.05);
  border-radius: 12px;
  border-left: 4px solid #25d366;
}

.agent-message p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--text-color);
}

.agent-message p:last-child {
  margin-bottom: 0;
}

/* Modal de Inscripción */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.8rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 30px;
}

.inscription-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.submit-button {
  background: linear-gradient(135deg, var(--primary-color), #e6b800);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Scroll personalizado para el modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), #e6b800);
  border-radius: 10px;
  border: 2px solid white;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e6b800, var(--primary-color));
}

/* Para Firefox */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}
