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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #111827;
}
:root {
  --primary: #071d5b;
  --secondary: #6b7280;
  --accent: #1cc7a1;

  --dark: #111827;
  --light: #f8fafc;
  --white: #ffffff;

  --radius: 16px;

  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  --transition: 0.35s ease;
}
.container-ean {
  width: min(1200px, 92%);

  margin: auto;
}

.section {
  padding: 90px 0;
}
/*=========================================
HERO
=========================================*/

.hero-section {
  padding-top: 70px;
}
.title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);

  font-weight: 800;

  color: var(--primary);
}

.subtitle {
  font-size: 1.1rem;

  color: var(--secondary);

  line-height: 1.8;
}
.btn-primary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 34px;

  border-radius: 999px;

  background: var(--primary);

  color: white;

  font-weight: 700;

  transition: var(--transition);

  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent);

  transform: translateY(-2px);
}
.title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #071d5b;
}

.subtitle {
  font-size: 1.35rem;
  color: #5b6474;
  line-height: 1.7;
}

.section {
  padding: 5rem 0;
}
/*====================================
COMPANIES
====================================*/

.company-slider {
  display: flex;

  align-items: center;

  gap: 90px;

  width: max-content;

  animation: companies 40s linear infinite;

  padding: 40px 0;
}

.company-slider img {
  height: 32px;
  width: auto;
  object-fit: contain;

  opacity: 0.55;

  transition: 0.35s;

  filter: grayscale(100%);
}

.company-slider img:hover {
  opacity: 1;

  filter: none;

  transform: scale(1.08);
}

@keyframes companies {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.company-slider:hover {
  animation-play-state: paused;
}
/*====================================
TESTIMONIOS
====================================*/

.testimonial-card {
  background: #ffffff;

  border-radius: 28px;

  padding: 45px 35px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-photo {
  width: 110px;

  height: 110px;

  border-radius: 50%;

  object-fit: cover;

  margin: auto;

  margin-bottom: 25px;

  border: 5px solid #ffffff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #f4b400;

  font-size: 24px;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;

  color: #555;

  line-height: 1.8;

  margin-bottom: 30px;

  min-height: 160px;
}

.testimonial-name {
  color: #071d5b;

  font-size: 24px;

  font-weight: 700;
}

.testimonial-position {
  color: #7a7a7a;

  font-size: 15px;
}
/*=====================================
PAISES
======================================*/

.country-card {
  background: #ffffff;

  padding: 35px;

  border-radius: 24px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  transition: 0.35s;

  font-size: 42px;
}

.country-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.country-card h4 {
  margin-top: 15px;

  font-size: 20px;

  font-weight: 700;

  color: #071d5b;
}
/*==================================
    EAN VALUE CARDS
==================================*/

/*==================================================
            WHY EAN
==================================================*/

.why-ean-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.why-title {
  max-width: 900px;
  margin: 0 auto 28px;
}

.why-subtitle {
  max-width: 760px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch;
}

.why-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 42, 116, 0.12);
  height: 100%;
}

.why-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.ean-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(15, 42, 116, 0.08);
  transition: 0.35s;
}

.ean-card:hover {
  transform: translateY(-6px);
}

.ean-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.ean-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.ean-card p {
  line-height: 1.7;
  color: #667085;
}

.method-ean {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 35px;
  box-shadow: 0 20px 45px rgba(15, 42, 116, 0.18);
}

.method-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.method-ean h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.method-ean p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.why-button {
  text-align: center;
}

.why-button .btn-primary {
  padding: 16px 40px;
}

/*=============================
        Responsive
==============================*/

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    max-width: 650px;
    margin: auto;
    aspect-ratio: 9/16;
  }
}

@media (max-width: 768px) {
  .ean-grid {
    grid-template-columns: 1fr;
  }
}
.faculty-card {
  background: #ffffff;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid #edf1f7;

  box-shadow: 0 12px 35px rgba(15, 42, 116, 0.08);

  transition: all 0.35s ease;
}

.faculty-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 24px 55px rgba(15, 42, 116, 0.14);
}
.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card a {
  margin-top: auto;
}
.hero-image {
  margin-top: -40px;
}
