﻿    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #ffffff;
      line-height: 1.6;
    }

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

    h1, h2, h3 {
      margin-bottom: 15px;
    }

    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
      text-align: center;
    }

    p {
      color: #555;
    }

    .btn {
      display: inline-block;
      padding: 12px 20px;
      margin-right: 10px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
    }

    .btn-primary {
      background: #0a2540;
      color: #fff;
    }

    .btn-secondary {
      border: 1px solid #0a2540;
      color: #0a2540;
    }

    /* HERO */
    .hero {
      text-align: center;
      background: #f5f7fa;
      padding: 80px 20px;
    }

    /* GRID */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

	.card {
	  padding: 25px;
	  border: 1px solid #eee;
	  border-radius: 8px;
	  background: #fff;
	
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	}
    .card h3 {
      margin-top: 0;
    }

    /* SECTION ALT */
    .alt {
      background: #f9fafb;
    }

    /* FEATURE */
    .feature {
      text-align: center;
      max-width: 700px;
      margin: auto;
    }

    /* CTA */
    .cta {
      text-align: center;
      background: #0a2540;
      color: #fff;
    }

    .cta p {
      color: #ddd;
    }

    footer {
      text-align: center;
      padding: 30px;
      font-size: 0.9rem;
      background: #111;
      color: #aaa;
    }
  
    /* HERO */
    .hero {
	  background: #f5f7fa;
	  padding: 80px 20px;
	}
	
	.hero-flex {
	  display: flex;
	  align-items: center;
	  gap: 40px;
	}
	
	.hero-text {
	  flex: 1;
	}
	
	.hero-buttons {
	  margin-top: 20px; /* espacio debajo del texto */
	}
	
	.hero-buttons .btn {
	  margin-right: 10px;
	}
	
	  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
   }
	
	.hero-image {
	  flex: 1;
	  display: flex;
	  justify-content: center;
	}
	
	.hero-image img {
	  width: 100%;
	  max-width: 450px; /* tamaÃ±o controlado */
	  border-radius: 10px;
	}

    /* NAV */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
  font-weight: 600;
  color: #0a2540;
}

/* NAV DESKTOP */
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HAMBURGUESA (oculta en desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

	#nav-menu {
	  display: none;
	  flex-direction: column;
	  width: 100%;
	  margin-top: 10px;
	}
	
  nav a {
    margin: 10px 0;
  }

	#nav-menu.active {
	  display: flex;
	}
}  

	.btn-nav {
	  background: #0a2540;
	  color: #fff !important;
	  padding: 8px 14px;
	  border-radius: 5px;
	  margin-left: 20px;
	}

	/* Responsive */
	@media (max-width: 768px) {
	
	  .hero-flex {
	    flex-direction: column;
	    text-align: center;
	  }
	
	  .nav-container {
	    flex-direction: column;
	    align-items: flex-start;
	  }
	
	  .menu-toggle {
	    align-self: flex-end;
	  }
	
	  .logo {
	    width: 100%;
	  }
	
	}

	/* Section */
    .section {
      margin-top: 40px;
    }

    ul {
      margin-top: 15px;
    }

    .highlight {
      background: #f9fafb;
      padding: 30px;
      border-radius: 8px;
      margin-top: 30px;
    }

    .price-box {
      text-align: center;
      border: 1px solid #eee;
      padding: 30px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .price {
      font-size: 2rem;
      margin: 10px 0;
    }



    p {
      text-align: center;
      color: #555;
    }
