/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* TIPOGRAFÍA SECUNDARIA */
h2, h3 {
  font-family: 'Raleway', sans-serif;
}

/* 1. TOP BAR */
.top-bar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 48px;
}

.account a {
  color: #0b2545;
  margin-left: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.account .whatsapp {
  background-color: #1d8ec9;
  padding: 5px 10px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
}

.account .whatsapp:hover {
  background-color: #157bb5;
}

/* 2. MENÚ PRINCIPAL */
.main-nav {
  background-color: #1d5d99;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 14px 22px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.main-nav a:hover {
  background-color: #0b3e6f;
}

/* 3. BANNER */
.banner {
  background-color: #0d4473;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

.banner-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
}

.banner-content p {
  font-size: 18px;
}

/* 4. BOTTOM BAR */
.bottom-bar {
  background-color: #1ca0d8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.bottom-bar a {
  flex: 1 1 200px;
  text-align: center;
  padding: 15px 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background-color 0.3s;
}

.bottom-bar a:last-child {
  border-right: none;
}

.bottom-bar a:hover {
  background-color: #1689b8;
}

/* 5. MAIN CONTENT */
.main-content {
  background-color: #f5f7fa;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 8px;
  text-align: center;
}

.content-wrapper h2 {
  color: #114a82;
  font-size: 28px;
  margin-bottom: 16px;
}

.content-wrapper p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

/* 6. CARDS SECTION */
.main-content-cards {
  background-color: #eef4fa;
  padding: 50px 20px;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: linear-gradient(to bottom, #ffffff, #f9fbfd);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 25px 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e6e6e6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.card img {
  max-width: 80px;
  margin-bottom: 24px;
}

.card h3 {
  color: #114a82;
  font-size: 22px;
  margin-bottom: 14px;
}

.card p {
  color: #333333;
  font-size: 15px;
  line-height: 1.5;
}

.card-button {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  background-color: #1ca0d8;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.card-button:hover {
  background-color: #1689b8;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: #d1d1d1;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 7. RESPONSIVE */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    padding: 12px 16px;
    text-align: left;
  }

  .bottom-bar {
    flex-direction: column;
  }

  .bottom-bar a {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .bottom-bar a:last-child {
    border-bottom: none;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* === SECCIÓN DE PLANES === */
.pricing-section {
  background-color: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 32px;
  color: #114a82;
  margin-bottom: 20px;
  font-weight: 700;
}

.pricing-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTENEDOR FLEX PARA LAS TARJETAS */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

/* TARJETAS INDIVIDUALES DE PLANES */
.pricing-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: #1d8ec9;
}

.pricing-card h3 {
  background-color: #1d8ec9;
  color: #ffffff;
  padding: 16px 12px;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0 20px;
  text-align: left;
}

.pricing-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d8ec9;
  font-weight: bold;
}

.price {
  font-size: 32px;
  color: #1d8ec9;
  margin: 16px 0;
  font-weight: bold;
}

.price span {
  font-size: 14px;
  color: #555;
}

.price.promo {
  color: #d35400;
}

.btn-order {
  display: inline-block;
  background-color: #1d8ec9;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.btn-order:hover {
  background-color: #157bb5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}
/* === SOBRE NOSOTROS SECTION === */
.about-us {
  background-color: #ffffff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-container img {
  max-width: 300px;
  flex: 1 1 300px;
}

.about-text {
  flex: 2 1 400px;
}

.about-text h2 {
  color: #114a82;
  font-size: 28px;
  margin-bottom: 16px;
}

.about-text p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-container img {
    max-width: 200px;
  }

  .about-text {
    flex: 1 1 100%;
  }
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* FOOTER */
.site-footer {
  background-color: #0b2545;
  color: #ffffff;
  width: 100%;
}

.footer-inner {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-brand img {
  height: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f0c040;
}
.features-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.features-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #0b2545;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 40px;
  color: #22c55e;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: #0b2545;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}
.welcome-section {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.welcome-container h2 {
  font-size: 32px;
  color: #0b2545;
  margin-bottom: 15px;
}

.welcome-subtitle {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.welcome-container p {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #0b2545;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #103b75;
}
/* ===== MENÚ HAMBURGUESA LIMPIO Y FINAL ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  padding: 14px 20px;
  cursor: pointer;
}

/* NAV DESKTOP DEFAULT */
.nav-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: block;
  padding: 14px 22px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.nav-links li a:hover {
  background-color: #0b3e6f;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .hamburger {
    display: block !important;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    background-color: #1d5d99;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    padding: 16px 20px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .logo img {
    max-width: 200px;
    height: auto;
  }

  .account {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .account a {
    flex: 1 1 30%;
    text-align: center;
    padding: 8px;
    background-color: #1d8ec9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
  }

  .account a:hover {
    background-color: #157bb5;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 10px 10px;
    margin: 5px auto;
  }

  .about-container {
    gap: 8px;
  }

  .about-container img {
    max-width: 120px;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 5px 5px;
    margin: 5px auto;
  }
}
@media (max-width: 768px) {
  .about-container {
    display: block;
    gap: 0;
    text-align: center;
    padding: 10px 0;
  }

  .about-container img {
    max-width: 120px;
    width: 100%;
    margin: 5px auto;
  }
}



