/* ===== ESTILOS GENERALES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

/* ===== HEADER =====*/
.navbar {
  background-color: #6A1B9A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
}

.logo img {
  width: 100px;
  margin-right: 12px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: opacity 0.2s;
}

.navbar a:hover {
  opacity: 0.8;
}

.btn-azul1 {
  background-color: #1E3A8A;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  width: 100%;
  height: 700px;
  background-color: #B0BEC5;
}

.hero-texto {
  width: 50%;
  padding: 70px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-texto h1 {
  color: #6A1B9A;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-texto p {
  font-size: 32px;
  color: #1E3A8A;
  margin-bottom: 25px;
  max-width: 90%;
}

.btn-azul {
  background-color: #3F82D4;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
}

.hero-img {
  width: 50%;
  height: 100%;
}

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

/* ===== CÓMO FUNCIONA ===== */
.funciona {
  text-align: center;
  padding: 80px 20px;
}

.funciona h2 {
  color: #6A1B9A;
  margin-bottom: 60px;
  font-size: 32px;
}

.pasos {
  display: flex;
  justify-content: center;
  gap: 175px;
  flex-wrap: wrap;
}

.paso {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: transform 0.2s ease;
}

.paso:hover {
  transform: translateY(-4px);
}

.numero {
  width: 60px;
  height: 60px;
  background-color: #FFD400;
  color: #1E3A8A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 40px;
  margin: 0 auto 20px;
}

.paso h3 {
  color: #1E3A8A;
  font-size: 18px;
  margin-bottom: 10px;
}

.paso p{ 
    color: #1E3A8A;
  font-size: 16px;
  margin-bottom: 10px;
}

/* ===== PROYECTOS EXITOSOS ===== */
.proyectos {
  background-color: #B0BEC5;
  padding: 80px 60px;
}

.proyectos h2 {
  color: #6A1B9A;
  font-size: 32px;
  margin-bottom: 50px;
  text-align: left;
}

.projects-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
}

.project-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  width: 612px;
  height: 341px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-img img {
  width: 204px;
  height: 256px;
  border-radius: 10px;
  object-fit: cover;
}

.project-content h3 {
  color: #1E3A8A;
  font-size: 32px;
  margin-bottom: 5px;
}

.project-content small {
  color: #3F82D4;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.project-content p {
  font-size: 16px;
  color: #1E3A8A;
  line-height: 1.4;
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

.btn-azul2 {
  background-color: #3F82D4;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.2s ease;
}

/* ===== NOSOTROS ===== */
.nosotros-section {
  text-align: center;
  padding: 80px 20px;
  background-color: white;
}

.nosotros-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.nosotros-section h2 {
  color: #6A1B9A;
  font-size: 32px;
  margin: 0;
}

.nosotros-logo {
  width: 200px;
  height: 117px;
  object-fit: contain;
}

.nosotros-section p {
  max-width: 750px;
  margin: 0 auto 25px;
  color: #1E3A8A;
  font-size: 16px;
  line-height: 1.6;
}

.quote {
  color: #1E3A8A;
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #6A1B9A;
  color: white;
  text-align: center;
  padding: 40px 20px;
  
}

.footer-logo {
  width: 128px;
  height: 85px;
  margin-bottom: 10px;
}

.footer-nav {
  margin-bottom: 10px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 24px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 16px;
}
