:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4895ef;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --text-color: #2b2d42;
  --text-light: #8d99ae;
  --success-color: #4cc9f0;
  --warning-color: #f72585;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Comfortaa', cursive;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
}

/* Estilos base */
body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.3;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero Section Ultra Premium */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
  color: white;
  padding: 80px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(67, 97, 238, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
  margin-left: 8px;
  color: var(--accent-color);
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--dark-color);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
}

.cta-button svg {
  margin-left: 10px;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-button svg {
  margin-right: 10px;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-5px);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.image-wrapper:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  z-index: 0;
}

.hero-stats {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--box-shadow);
  max-width: 90%;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  background: linear-gradient(to right, var(--accent-color), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Benefits Section Ultra Premium */
.benefits-section {
  padding: 140px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-header .section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(63, 55, 201, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
}

.benefit-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefit-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(72, 149, 239, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.benefit-card:nth-child(1) .benefit-decoration {
  top: -50px;
  right: -50px;
}

.benefit-card:nth-child(2) .benefit-decoration {
  bottom: -50px;
  left: -50px;
}

.benefit-card:nth-child(3) .benefit-decoration {
  top: -50px;
  left: -50px;
}

.benefit-card:nth-child(4) .benefit-decoration {
  bottom: -50px;
  right: -50px;
}

/* Indications Section Ultra Premium */
.indications-section {
  padding: 120px 0;
  background-color: #f8f9fa;
  position: relative;
}

.indications-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.indication-item {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 25px;
}

.indication-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.indication-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(67, 97, 238, 0.1);
  line-height: 1;
  margin-top: -10px;
}

.indication-content {
  flex: 1;
}

.indication-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(63, 55, 201, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.indication-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.indication-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Testimonial Section Ultra Premium */
.testimonial-section {
  padding: 160px 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(72, 149, 239, 0.1) 0%, transparent 50%);
}

.section-header.light .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header.light h2 {
  color: white;
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--box-shadow);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
  color: #ffd700;
}

.testimonial-section blockquote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  font-weight: 300;
  color: white;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* CTA Section Ultra Premium */
.cta-section {
  background-color: white;
  position: relative;
}

.cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 30px;
  box-shadow: var(--box-shadow-hover);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.cta-content {
  padding: 80px;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
}

.cta-image {
  position: relative;
  height: 100%;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.8) 0%, rgba(63, 55, 201, 0.5) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 60px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    max-width: 100%;
    margin: 40px auto 0;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .benefit-card {
    padding: 40px 30px;
  }

  .cta-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .indications-container {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-section blockquote {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-content, .benefits-grid, .indications-container, .testimonial-slider {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cta-content {
    padding: 40px 30px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}