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

body, html {
  padding-top: 40px;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
    margin: 0;
  color: #333;
  background-color: #fff;
}

.honeypot {
  display: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.center {
    display: flex;
    justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

nav li:last-child {
  border-right: none;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a:hover:not(.active) {
  background-color: #1B5E20;
  color: rgba(255, 255, 255, 0.85);
}

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

.hero {
  background-color: #eaf2f8;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background-color: #2E7D32;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #1B5E20;
}

.seccion {
  padding: 10px 20px;
}

.seccion h2 {
  text-align: center;
  margin-bottom: 30px;
}

.gris {
  background-color: #F5F5F5;
}

.resaltado {
  background-color: #eaf2f8;
}

.beneficios {
  list-style: none;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card-fm {
  background-color: #fff;
  border: 1px solid #2E7D32;
  padding: 20px;
  border-radius: 8px;
}

.card-fm h3 {
  margin-bottom: 15px;
  color: #2E7D32;
  font-size: 18px;
}

.card-fm p {
  font-size: 16px;
  line-height: 1.6;
}

.card-fm h3 {
  margin-bottom: 15px;
  color: #2E7D32;
}

footer {
  background-color: #2E7D32;
  color: #fff;
  text-align: center;
  padding: 7px 0;
  margin-top: 10px;
  font-size: 12px;
}

.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #25D366;
  color: white;
  font-size: 20x;
  padding: 10px 10px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.connet-panel {
  position: fixed;
  bottom: 70px;
  right: 10px;
  background-color: #198ae3;
  color: white;
  font-size: 20x;
  padding: 10px 14px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.top {
  position: fixed;
  top: 87px;
  right: 10px;
  background-color: #253fd3;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 1px 7px;
  border-radius: 70%;
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(0,0,0,0.3);
}

.logo {
  height: 50px;
  object-fit: contain;
}

.flag {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.fas {
  margin-right: 10px;
  font-size: 18px;
  color: #253fd3;
}


.beneficios li i {
  font-size: 22px;
}

.fz-small{
  font-size:14px !important;
}

.rounded {
  flex: none;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}

.opacity-50 {
  opacity: 0.5 !important; 
}

.responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Rsve */

  /* Imagen de fondo moderna con overlay */
  .hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .hero-section p {
    font-size: 1.3rem;
  }

  .navbar {
    background-color: #2E7D32 !important;
    color: #fff;
  }

  .card {
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }
  
  .radius-50 {
    flex: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    }