/* Estilos generales */
:root {
  --primary: #0072bc;
  /* Azul del logo */
  --primary-dark: #005a94;
  --primary-light: #4c9ed9;
  --secondary: #4caf50;
  /* Verde del logo */
  --secondary-dark: #3d8b40;
  --secondary-light: #7cc47f;
  --accent: #ff6b35;
  --accent-light: #ff8c69;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --text-muted: #95a5a6;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --muted: #f1f5f9;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Clases de animación */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilidades */
.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 114, 188, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.1);
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 114, 188, 0.3);
}

.btn-full {
  width: 100%;
}

.btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Header */
.header {
  height: 5.5rem;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 4px 20px var(--shadow);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.logo-img {
  height: 4.5rem;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 114, 188, 0.2));
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 4px 12px rgba(0, 114, 188, 0.3));
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1rem;
  position: relative;
  border-radius: var(--radius);
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover {
  color: white;
  transform: translateY(-2px);
}

.menu-toggle {
  background: var(--gradient-primary);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.menu-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 114, 188, 0.4);
}

/* Menú móvil */
.mobile-menu {
  display: none;
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 99;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Video Banner Section */
.video-banner-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: transparent;
}

.video-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* Ocultar elementos de marca de YouTube */
#videoBanner iframe::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--background-alt) 0%, var(--muted) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%230072bc" stop-opacity="0.1"/><stop offset="100%" stop-color="%230072bc" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 40px var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Banner Informativo */
.info-banner {
  background: var(--gradient-accent);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="30%" cy="30%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23b)"/><circle cx="700" cy="700" r="300" fill="url(%23b)"/></svg>');
  z-index: 0;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-text {
  max-width: 700px;
}

.banner-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-download {
  font-size: 1.3rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  font-weight: 700;
}

.btn-download:hover {
  background: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-download i {
  margin-left: 0.75rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.btn-download:hover i {
  transform: translateX(5px) scale(1.1);
}

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

section:nth-child(even) {
  background-color: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.section-description {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Sección Indicadores */
.indicators-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}

.indicators-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%234caf50" stop-opacity="0.05"/><stop offset="100%" stop-color="%230072bc" stop-opacity="0.05"/></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad)"/></svg>');
  z-index: 0;
}

.indicators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.indicator-card {
  background: linear-gradient(145deg, var(--background) 0%, var(--muted) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow), 0 1px 8px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.indicator-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-lg), 0 8px 16px var(--shadow);
}

.indicator-icon {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.indicator-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.indicator-title {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.indicators-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.indicator-detail {
  background: linear-gradient(145deg, var(--background) 0%, var(--muted) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px var(--shadow), 0 1px 8px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.indicator-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.indicator-detail h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

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

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary);
}

.benefits-list li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px var(--shadow);
}

.benefits-list li i {
  color: var(--secondary);
  font-size: 1.5rem;
  background: rgba(76, 175, 80, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  min-width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sección Noticias */
.news-section {
  background: linear-gradient(135deg, var(--muted) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c" cx="70%" cy="30%"><stop offset="0%" stop-color="%23ff6b35" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ff6b35" stop-opacity="0"/></radialGradient></defs><circle cx="700" cy="300" r="400" fill="url(%23c)"/></svg>');
  z-index: 0;
}

.main-news {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4rem;
  background: linear-gradient(145deg, var(--background) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-lg), 0 5px 15px var(--shadow);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.main-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px var(--shadow-lg), 0 10px 25px var(--shadow);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 114, 188, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.news-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-news:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 2.5rem;
  position: relative;
}

.news-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.news-date::before {
  content: '📅';
  font-size: 1rem;
}

.news-excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
  font-size: 1.05rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.news-card {
  background: linear-gradient(145deg, var(--background) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px var(--shadow), 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px var(--shadow-lg), 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 2rem;
}

.news-card-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.news-card-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--accent-light);
  transform: translateX(5px);
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* Sección Industrias */
.industries-section {
  background-color: var(--muted);
}

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

.industry-logo {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.industry-logo:hover {
  transform: scale(1.05);
}

.industry-logo img {
  max-width: 100%;
  height: auto;
}

/* Sección Contacto */
.contact-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="d" cx="20%" cy="80%"><stop offset="0%" stop-color="%230072bc" stop-opacity="0.05"/><stop offset="100%" stop-color="%230072bc" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="800" r="400" fill="url(%23d)"/></svg>');
  z-index: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

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

.contact-description {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.7;
}

.contact-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, var(--background) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px var(--shadow-lg);
}

.contact-item i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  min-width: 2rem;
}

.contact-item span {
  font-weight: 500;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-form {
  background: linear-gradient(145deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px var(--shadow-lg), 0 5px 15px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 114, 188, 0.1);
  background: white;
  transform: translateY(-2px);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="e" cx="80%" cy="20%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="800" cy="200" r="300" fill="url(%23e)"/><circle cx="200" cy="800" r="400" fill="url(%23e)"/></svg>');
  z-index: 0;
}

.footer-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 5rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-weight: 700;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
}

.footer-links ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::before {
  width: 100%;
}

.footer-links ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

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

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .main-news {
    flex-direction: row;
  }

  .news-image {
    flex: 1;
  }

  .news-content {
    flex: 1;
  }

  .indicators-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-content {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .contact-form {
    flex: 1;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .benefits-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chatbot-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 114, 188, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.chatbot-toggle:hover::before {
  left: 100%;
}

.chatbot-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 114, 188, 0.5);
}

.chatbot-toggle i {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.chatbot-box {
  position: absolute;
  bottom: calc(100% + 1.5rem);
  right: 0;
  width: 380px;
  height: 550px;
  background: linear-gradient(145deg, var(--background) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px var(--shadow-lg), 0 10px 25px var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-box.active {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}

.chatbot-header {
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.chatbot-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.chatbot-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 2.5rem;
  height: 2.5rem;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.chatbot-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(248, 250, 252, 0.5);
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

.chatbot-message {
  max-width: 85%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-message.bot {
  background: linear-gradient(145deg, var(--muted) 0%, rgba(241, 245, 249, 0.8) 100%);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
  border: 1px solid rgba(0, 114, 188, 0.1);
}

.chatbot-message.user {
  background: var(--gradient-primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
}

.chatbot-message.typing {
  background: linear-gradient(145deg, var(--muted) 0%, rgba(241, 245, 249, 0.8) 100%);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
  padding: 1rem 1.25rem;
}

.chatbot-message.frequent-questions {
  background: linear-gradient(145deg, var(--muted) 0%, rgba(241, 245, 249, 0.8) 100%);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 114, 188, 0.1);
}

.frequent-questions-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.question-btn {
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 114, 188, 0.2);
  position: relative;
  overflow: hidden;
}

.question-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.question-btn:hover::before {
  left: 100%;
}

.question-btn:hover {
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 188, 0.4);
}

.typing-dots {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 20px;
}

.typing-dots::before,
.typing-dots::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
  animation: typingDots 1.4s ease-in-out infinite;
  transform: translateY(-50%);
}

.typing-dots::before {
  left: 0;
  animation-delay: 0s;
}

.typing-dots::after {
  left: 20px;
  animation-delay: 0.2s;
}

@keyframes typingDots {

  0%,
  60%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
}

.chatbot-input {
  padding: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.chatbot-input input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 114, 188, 0.1);
  background: white;
  transform: translateY(-1px);
}

.chatbot-send {
  background: var(--gradient-primary);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.3);
  position: relative;
  overflow: hidden;
}

.chatbot-send::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.chatbot-send:hover::before {
  left: 100%;
}

.chatbot-send:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 114, 188, 0.5);
}

.chatbot-send i {
  font-size: 1.3rem;
}

@media (max-width: 480px) {
  .chatbot-container {
    bottom: 1rem;
    right: 1rem;
  }

  .chatbot-box {
    width: calc(100vw - 2rem);
    height: 60vh;
    bottom: calc(100% + 0.5rem);
  }

  .chatbot-toggle-text {
    display: none;
  }

  .chatbot-toggle {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 3rem;
  }

  .footer-logo-img {
    height: 4rem;
  }
}