/*
Theme Name: Innovaeduca
Theme URI: https://innovaeduca.cl
Author: Innovaeduca
Author URI: https://innovaeduca.cl
Description: Tema oficial de Innovaeduca - Fundación educacional y de asesoría
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innovaeduca
*/

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Variables de colores */
:root {
  --innova-purple: #070346;
  --innova-coral: #fd6151;
  --innova-gold: #fcb900;
  --innova-gray: #777777;
  --innova-gray-light: #f8f9fa;
  --white: #ffffff;
  --black: #1a1a1a;
}

/* Tipografía */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Utilidades */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.25) saturate(1.5) drop-shadow(0 0 10px rgba(253, 97, 81, 0.5));
}

.site-header.scrolled .logo-img {
  height: 3rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.logo-text .innova {
  color: var(--innova-coral);
}

.site-header:not(.scrolled) .logo-text {
  color: var(--white);
}

.site-header.scrolled .logo-text {
  color: var(--innova-purple);
}

/* Navegación */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.site-header:not(.scrolled) .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-link {
  color: #374151;
}

.site-header.scrolled .nav-link:hover {
  color: var(--innova-coral);
  background: #f3f4f6;
}

.nav-link.active {
  color: var(--innova-coral) !important;
  background: rgba(253, 97, 81, 0.1) !important;
}

/* Menú móvil */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.site-header:not(.scrolled) .mobile-menu-toggle {
  color: var(--white);
}

.site-header.scrolled .mobile-menu-toggle {
  color: var(--innova-purple);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--innova-coral);
  background: rgba(253, 97, 81, 0.1);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 3, 70, 0.95), rgba(7, 3, 70, 0.85), rgba(7, 3, 70, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1rem 2rem;
}

.hero-tagline {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(253, 97, 81, 0.2);
  color: var(--innova-coral);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: var(--innova-coral);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--innova-coral);
  color: var(--white);
}

.btn-primary:hover {
  background: rgba(253, 97, 81, 0.9);
}

.btn-outline {
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--innova-purple);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.scroll-indicator a:hover {
  color: var(--white);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Secciones generales */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--innova-purple);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title .highlight {
  color: var(--innova-coral);
}

.section-tagline {
  display: inline-block;
  color: var(--innova-coral);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--innova-gray);
  line-height: 1.75;
}

/* Quienes Somos */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience-number {
  width: 3rem;
  height: 3rem;
  background: var(--innova-coral);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.experience-text {
  font-weight: 600;
  color: var(--innova-purple);
}

.experience-text span {
  display: block;
  font-size: 0.875rem;
  color: var(--innova-gray);
  font-weight: 400;
}

.decorative-circle-1 {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(252, 185, 0, 0.2);
  border-radius: 9999px;
  z-index: -1;
}

.decorative-circle-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(253, 97, 81, 0.1);
  border-radius: 9999px;
  z-index: -1;
}

/* Valores */
.values-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 1.25rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(253, 97, 81, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.value-icon.gold {
  background: rgba(252, 185, 0, 0.1);
  color: var(--innova-gold);
}

.value-icon.coral {
  background: rgba(253, 97, 81, 0.1);
  color: var(--innova-coral);
}

.value-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.value-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.value-title {
  font-weight: 600;
  color: var(--innova-purple);
  margin-bottom: 0.25rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--innova-gray);
}

/* Certificaciones */
.certifications {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}

.certifications-title {
  font-size: 0.875rem;
  color: var(--innova-gray);
  margin-bottom: 1.5rem;
}

.certifications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.certification-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--innova-coral);
  border-radius: 9999px;
}

.certification-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--innova-purple);
}

/* Servicios */
.services-section {
  background: var(--innova-gray-light);
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(253, 97, 81, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon.gold {
  background: rgba(252, 185, 0, 0.1);
  color: var(--innova-gold);
}

.service-icon.coral {
  background: rgba(253, 97, 81, 0.1);
  color: var(--innova-coral);
}

.service-icon.purple {
  background: rgba(7, 3, 70, 0.1);
  color: var(--innova-purple);
}

.service-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--innova-purple);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.service-card:hover .service-title {
  color: var(--innova-coral);
}

.service-description {
  color: var(--innova-gray);
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--innova-coral);
  font-weight: 500;
  font-size: 0.875rem;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: var(--white);
  border-radius: 1rem;
  max-width: 768px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  position: relative;
  height: 12rem;
}

@media (min-width: 768px) {
  .modal-header {
    height: 16rem;
  }
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.modal-header-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.modal-badge.gold {
  background: rgba(252, 185, 0, 0.1);
  color: var(--innova-gold);
}

.modal-badge.coral {
  background: rgba(253, 97, 81, 0.1);
  color: var(--innova-coral);
}

.modal-badge.purple {
  background: rgba(7, 3, 70, 0.1);
  color: var(--innova-purple);
}

.modal-badge.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 1.875rem;
  }
}

.modal-body {
  padding: 1.5rem;
}

.modal-description {
  color: var(--innova-gray);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.modal-courses-title {
  font-weight: 600;
  color: var(--innova-purple);
  margin-bottom: 1rem;
}

.courses-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-height: 16rem;
  overflow-y: auto;
}

.course-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--innova-gray);
}

.course-item svg {
  color: var(--innova-coral);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .modal-footer {
    flex-direction: row;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--white);
}

/* Metodología */
.methodology-section {
  background: var(--innova-purple);
  position: relative;
  overflow: hidden;
}

.methodology-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.methodology-section .section-title {
  color: var(--white);
}

.methodology-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.steps-wrapper {
  position: relative;
}

.steps-line {
  display: none;
}

@media (min-width: 1024px) {
  .steps-line {
    display: block;
    position: absolute;
    top: 6rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .steps-line-progress {
    height: 100%;
    background: var(--innova-coral);
    width: 0;
    transition: width 1s ease;
  }
  
  .steps-line-progress.animate {
    width: 100%;
  }
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-icon:hover {
  border-color: var(--innova-coral);
  background: rgba(253, 97, 81, 0.2);
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--white);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--innova-coral);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
}

.methodology-cta {
  text-align: center;
  margin-top: 4rem;
}

.methodology-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

/* Equipo */
.team-section {
  background: var(--innova-purple);
  position: relative;
  overflow: hidden;
}

.team-section .section-title {
  color: var(--white);
}

.team-section .section-title .highlight {
  color: var(--innova-gold);
}

.team-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.team-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.team-image-wrapper {
  position: relative;
}

.team-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .professionals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.professional-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}

.professional-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--innova-gold);
}

.professional-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.team-mission {
  padding: 1.5rem;
  background: rgba(253, 97, 81, 0.2);
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 97, 81, 0.3);
}

.team-mission p {
  color: var(--white);
  font-weight: 500;
  font-style: italic;
}

/* Contacto */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-info-item:hover {
  background: #f9fafb;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(253, 97, 81, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--innova-coral);
}

.contact-info-label {
  font-size: 0.875rem;
  color: var(--innova-gray);
}

.contact-info-value {
  font-weight: 500;
  color: var(--innova-purple);
}

/* Social Links */
.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.social-links-title {
  font-size: 0.875rem;
  color: var(--innova-gray);
  margin-bottom: 1rem;
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(7, 3, 70, 0.1);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--innova-purple);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--innova-coral);
  color: var(--white);
}

.social-link-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Formulario */
.contact-form-wrapper {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #22c55e;
}

.form-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--innova-purple);
  margin-bottom: 0.5rem;
}

.form-success-text {
  color: var(--innova-gray);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--innova-purple);
}

.form-label .required {
  color: var(--innova-coral);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--innova-coral);
  box-shadow: 0 0 0 3px rgba(253, 97, 81, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--innova-coral);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: rgba(253, 97, 81, 0.9);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.site-footer {
  background: var(--innova-purple);
  color: var(--white);
}

.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-certification {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--innova-coral);
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--innova-coral);
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--innova-coral);
  color: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 50;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: rgba(253, 97, 81, 0.9);
  transform: scale(1.1);
}

/* Animaciones */
.fade-in-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--innova-purple);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0a0570;
}
