#header-placeholder {
  position: relative;
  z-index: 1000;
}
.hero-section {
  position: relative;
  width: 100%;
  height: 720px;
  color: #000;
  font-family: 'Gotham', sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 720px;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.3) 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 250px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 600;
  color: #000;
}

.hero-content .highlight {
  color: #d72612;
  margin: 20px 0;
  font-weight: 500;
  font-size: 2rem;
}

.hero-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #333;
}
.about-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Gotham', sans-serif;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
}
.services-section {
  background-color: #e5f2ec;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Gotham', sans-serif;
}

.services-section h2 {
  font-size: 4rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
}

.services-section {
  padding: 60px 20px;
}
.servicescardsection {
  padding: 10px 20px;
}

.services-grid-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #000000;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  font-family: 'Gotham', sans-serif;
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-5px);
}


.services-note {
  font-size: 1.3rem;
  color: #000000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.trust-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Gotham', sans-serif;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 6px;
}

.trust-text {
  max-width: 900px;
  flex: 1;
}

.trust-text h2 {
  font-size: 3rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.trust-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.trust-list li {
  margin-bottom: 10px;
}

.trust-note {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #333;
  font-style: italic;
}
/* Estilos generales (no modificados) */
.cta-section {
  font-family: 'Gotham', sans-serif;
  padding: 0;
  margin: 0;
}

.cta-image {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 720px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-box {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  color: #fff;
  padding: 60px 50px;
  width: 40%;
  max-width: 500px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #0a6c35;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #e2e2e2;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
  .cta-image {
    flex-direction: column;
    height: auto;
  }

  .cta-box {
    position: static;
    transform: none;
    width: 100%;
    padding: 30px 20px;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 20px;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .highlight {
    font-size: 1rem;
  }
  .trust-container {
    flex-direction: column;
    text-align: center;
  }

  .trust-text {
    max-width: 100%;
  }

  .trust-text h2 {
    font-size: 1.6rem;
  }
}
