* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #efefef;
}

header {
  background: #2c405c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-buttons a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
}

.hero {
  background: #2c405c;
  color: white;
  padding: 6rem 2rem;
  text-align: left;
  border-bottom-right-radius: 150px;
  position: relative;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero p:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p:first-child::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #deb34f;
  border-radius: 50%;
}

.hero h1 {
  font-size: 4rem;
  margin: 1rem 0 1rem 0;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
}

.hero p:last-of-type {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero button {
  margin-top: 2.5rem;
  background: #deb34f;
  border: none;
  padding: 0.9rem 2.5rem;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
}

.partners,
.video-section {
  padding: 3rem 2rem;
  text-align: center;
}

.partners {
  background: #efefef;
  width: 100%;
  height: 100%;
}

.partners h2,
.process h2,
.video-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.process {
  background: #2c405c;
  padding: 2rem 0 1rem;
  text-align: center;
}

.process-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.process-wrapper img,
.partners img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: none; /* Con esto hacemos que la imagen se quede completa, por que sino se queda chiquita plaaashhh*/
}

.video-section {
  background: #2c405c;
  padding-top: 1rem;
  padding-bottom: 3rem;
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  margin-top: 0;
}

.commitment {
  background-color: #efefef;
  padding: 4rem 2rem;
  color: #1a1a1a;
}

.commitment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.commitment-text {
  flex: 1 1 500px;
  max-width: 550px;
}

.commitment-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.commitment-text h2 {
  font-size: 2.8rem;
  margin: 0.5rem 0 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.commitment-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.commitment-icons {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 5px;
}

.icon-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.icon-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.impact-section {
  background: #2c405c;
  color: white;
  padding: 5rem 2rem;
}

.impact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

.impact-grid {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.impact-item img {
  height: 12px;
  margin-bottom: 0.5rem;
}

.impact-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.impact-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #d6d6d6;
}

.impact-text {
  background: white;
  color: #111;
  padding: 2rem;
  max-width: 450px;
  border-radius: 10px;
}

.impact-text small {
  display: block;
  font-weight: bold;
  color: #555;
  margin-bottom: 0.5rem;
}

.impact-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.impact-text p {
  font-size: 1.1rem;
  font-weight: 500;
}

.support-section {
  background: linear-gradient(to bottom, #f3f3f3, #efefef);
  padding: 4rem 2rem;
  text-align: center;
}

.support-container {
  max-width: 1000px;
  margin: 0 auto;
}

.support-text small {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: left;
}

.support-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.support-image .caption {
  font-size: 0.9rem;
  color: #2c405c;
  margin-top: 0.5rem;
  text-align: left;
}

.call-to-action {
  background-color: #efefef;
  padding: 4rem 2rem;
  text-align: center;
  color: #1a1a1a;
}

.call-to-action h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.call-to-action p {
  font-size: 1.1rem;
  color: #233b5d;
}

footer {
  background: white;
  padding: 4rem 2rem;
  color: #233b5d;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left {
  text-align: left;
  flex: 1 1 300px;
}

.footer-left img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-left p {
  margin: 0;
  max-width: 400px;
  color: #233b5d;
  font-size: 1rem;
}

.footer-right {
  text-align: right;
  flex: 1 1 200px;
}

.footer-button {
  display: inline-block;
  background: #deb34f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
}
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #233b5d;
}

.footer-bottom a {
  color: #deb34f;
  text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p:last-of-type {
    font-size: 1rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero button {
    width: auto;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  .nav-buttons {
    margin-top: 1rem;
  }

  .commitment-container {
    flex-direction: column;
    text-align: center;
  }

  .commitment-text h2 {
    font-size: 2rem;
  }

  .commitment-icons {
    align-items: center;
  }

  .icon-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-item img {
    margin-bottom: 0.5rem;
  }
}
