/* ===== PÁGINA SOBRE MÍ - ESTILOS MODERNOS ===== */

/* ===== HERO SOBRE MÍ ===== */
.hero-sobre-mi {
  background: linear-gradient(135deg, var(--color-white2) 0%, var(--color-bg) 100%);
  padding: 8rem 1.5rem 10rem;
  position: relative;
  overflow: hidden;
}

.hero-sobre-mi::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40, 225, 218, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero-sobre-mi .hero-inner {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--color-text);
  letter-spacing: 1px;
  position: relative;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 3px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.btn-suscribete {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-primary);
  color: var(--color-white2);
  padding: 1.3rem 3rem;
  border-radius: 16px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(40, 225, 218, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-primary);
}

.btn-suscribete::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-accent);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-suscribete:hover::before {
  width: 300%;
  height: 300%;
}

.btn-suscribete:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(40, 225, 218, 0.4);
  border-color: var(--color-accent);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(40, 225, 218, 0.2);
  transition: all 0.4s ease;
  border: 5px solid var(--color-white2);
}

.hero-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 100px rgba(40, 225, 218, 0.3);
}

/* ===== SECCIÓN QUIÉNES SOMOS - ESTILO BENTO BOX ===== */
.sobre-nosotros {
  padding: 8rem 1.5rem;
  background: var(--color-white2);
  position: relative;
}

.sobre-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  gap: 3rem;
}

.sobre-text-box {
  border-radius: 32px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.sobre-text-box::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.sobre-nosotros h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  position: relative;
}

.sobre-nosotros h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.sobre-nosotros p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.sobre-nosotros strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Grid de estadísticas */
.sobre-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sobre-visual-box {
  border-radius: 28px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.sobre-visual-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.sobre-visual-box::before {
  content: '';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  filter: blur(2px);
}

/* Diferentes colores para cada stat */
.stat-1 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.stat-1::before {
  content: '\1F680';
}

.stat-2 {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-orange) 100%);
}

.stat-2::before {
  content: '\2605';
}

.stat-3 {
  background: linear-gradient(135deg, var(--color-accent) 0%, #5AE4DD 100%);
}

.stat-3::before {
  content: '\2666';
}

.sobre-stat {
  text-align: center;
  color: var(--color-white2);
  position: relative;
  z-index: 1;
}

.sobre-stat .big-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sobre-stat p {
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 1;
  color: var(--color-white2);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== MÉTODO Y ENFOQUE - ESTILO CARDS DIAGONALES ===== */
.metodo-enfoque {
  padding: 8rem 1.5rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white2) 100%);
  position: relative;
  overflow: hidden;
}

.metodo-enfoque::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 155, 38, 0.08) 0%, transparent 70%);
  top: -300px;
  left: -300px;
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 3px;
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: var(--max-width);
  margin: auto;
  position: relative;
  z-index: 1;
}

.metodo-item {
  background: var(--color-white2);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.metodo-item::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: -70px;
  right: -70px;
  opacity: 0.1;
  transition: all 0.5s ease;
}

.metodo-item.metodo-1::before { background: var(--color-primary); }
.metodo-item.metodo-2::before { background: var(--color-secondary); }
.metodo-item.metodo-3::before { background: var(--color-accent); }
.metodo-item.metodo-4::before { background: var(--color-orange); }

.metodo-item:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.metodo-item:nth-child(even):hover {
  transform: translateY(-15px) rotate(2deg);
}

.metodo-item:hover::before {
  width: 200px;
  height: 200px;
  top: -90px;
  right: -90px;
}

.metodo-item i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s ease;
}

.metodo-item:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.metodo-1 i { color: var(--color-primary); }
.metodo-1:hover { border-color: var(--color-primary); }

.metodo-2 i { color: var(--color-secondary); }
.metodo-2:hover { border-color: var(--color-secondary); }

.metodo-3 i { color: var(--color-accent); }
.metodo-3:hover { border-color: var(--color-accent); }

.metodo-4 i { color: var(--color-orange); }
.metodo-4:hover { border-color: var(--color-orange); }

.metodo-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.metodo-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.85;
}

/* ===== BENEFICIOS - ESTILO GLASSMORPHISM ===== */
.beneficios-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.beneficios-section .section-title {
  color: var(--color-white2);
  position: relative;
  z-index: 1;
}

.beneficios-section .section-title::after {
  background: var(--color-white2);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: auto;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.beneficio-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.beneficio-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--color-white2);
}

.beneficio-item i {
  font-size: 3rem;
  color: var(--color-white2);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.beneficio-item:hover i {
  transform: scale(1.2) rotate(-15deg);
}

.beneficio-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white2);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.beneficio-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-white2);
  opacity: 0.95;
}

/* ===== TESTIMONIOS - ULTRA MODERNO SAAS STYLE ===== */
.testimonios-section {
  padding: 10rem 1.5rem;
  background: var(--color-white2);
  position: relative;
  overflow: hidden;
}

.testimonios-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(40, 225, 218, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.testimonios-section .section-title {
  margin-bottom: 6rem;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--color-white2);
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(40, 225, 218, 0.15);
  border-color: var(--color-primary);
}

/* Card header con avatar y badge */
.testimonial-header {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white2);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(40, 225, 218, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text);
  font-family: var(--font-sans);
  opacity: 0.6;
  font-weight: 600;
}

.testimonial-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-orange) 100%);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-white2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 155, 38, 0.3);
}

/* Card body con quote */
.testimonial-body {
  padding: 0 2rem 2rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* Rating stars */
.testimonial-rating {
  padding: 0 2rem 2rem;
  display: flex;
  gap: 0.3rem;
}

.testimonial-rating .star {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

/* Animación pulse */
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* ===== CTA FINAL ===== */
.cta-sobre-mi {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-sobre-mi h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--color-white2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.cta-sobre-mi p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-white2);
  opacity: 0.95;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-sobre-mi strong {
  font-weight: 700;
  color: var(--color-white2);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-main {
  background: var(--color-white2);
  color: var(--color-primary);
  border: 2px solid var(--color-white2);
}

.cta-buttons .btn-main::before {
  background: var(--color-secondary);
}

.cta-buttons .btn-main:hover {
  color: var(--color-white2);
  border-color: var(--color-secondary);
}

/* ===== ANIMACIONES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-sobre-mi .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image img {
    margin: 0 auto;
    display: block;
  }

  .metodo-grid,
  .beneficios-grid,
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-sobre-mi,
  .sobre-nosotros,
  .metodo-enfoque,
  .beneficios-section,
  .testimonios-section,
  .cta-sobre-mi {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-sobre-mi {
    padding: 4rem 1rem 6rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-main,
  .cta-buttons .btn-suscribete {
    width: 100%;
    justify-content: center;
  }
}