/* Hero Section */
.conocenos-hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 0;
  padding-left: 5%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/Imagenes de alta resolucion/conocenos-portada.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;
}

.hero-title-overlay {
  position: absolute;
  z-index: 3;
  left: calc((100vw - 1440px) / 2 + 24px);
  bottom: 25%;
  background: linear-gradient(135deg, #F8AF40 0%, #e69e36 100%);
  padding: 25px 70px;
  border-radius: 0 20px 0 20px;
  border: 6px solid #142139;
  box-shadow: 0 12px 0 #142139, 0 16px 24px rgba(7, 42, 64, 0.18);
  width: 732px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conocenos-page-title {
  font-family: 'Switzer', sans-serif !important;
  font-size: 96px !important;
  font-weight: 600 !important;
  color: #142139 !important;
  margin: 0 !important;
  text-align: center !important;
  line-height: 1.1 !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Sección de tarjetas */
.conocenos-cards-section {
  background: #F5F5F5;
  padding: 152px 0;
}

.conocenos-card {
  background: #FFFFFF;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  height: 350px;
  position: relative;
  border: 4px solid;
}

.conocenos-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Colores de borde para las tarjetas */
.verde-card {
  border-color: #598030;
  background: #7CB342;
}

.naranja-card {
  border-color: #ce8c29;
}

.conocenos-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.conocenos-card:hover .card-image {
  transform: scale(1.08);
}

.conocenos-card-content {
  padding: 20px 25px;
  background: #7CB342;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.naranja-card .conocenos-card-content {
  background: #F8AF40;
  
}

.conocenos-card-title {
  font-family: 'Switzer', Arial, sans-serif;
  font-size: 24px !important;
  font-weight: 600;
  color: #072A40;
  margin: 0;
  flex: 1;
}

.conocenos-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F8AF40;
  color: #072A40;
  font-family: 'Switzer', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 0 #072A40, 0 10px 16px rgba(7, 42, 64, 0.18);
  transition: all 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.verde-card .conocenos-btn {
  background-color: #e69e36;
}

.conocenos-btn:hover {
  background-color: #e69e36;
  color: #072A40;
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #072A40, 0 13px 20px rgba(7, 42, 64, 0.25);
  text-decoration: none;
}

.verde-card .conocenos-btn:hover {
  background-color: #F0F0F0;
  color: #072A40;
}

.conocenos-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #072A40, 0 7px 12px rgba(7, 42, 64, 0.15);
}

.conocenos-btn i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .conocenos-hero {
    height: 400px;
    margin-top: 100px;
  }
  
  .conocenos-page-title {
    font-size: 42px;
  }
  
  .hero-title-overlay {
    padding: 20px 50px;
  }
  
  .conocenos-cards-section {
    padding: 80px 0;
  }
  
  .conocenos-card {
    height: 320px;
    margin-bottom: 30px;
  }
  
  .conocenos-card-image {
    height: 220px;
  }
  
  .conocenos-card-content {
    height: 100px;
    padding: 15px 20px;
  }
  
  .conocenos-card-title {
    font-size: 20px;
  }
  
  .conocenos-btn {
    font-size: 15px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .conocenos-hero {
    height: 350px;
    margin-top: 80px;
  }
  
  .conocenos-page-title {
    font-size: 36px;
  }
  
  .hero-title-overlay {
    padding: 15px 40px;
  }
  
  .conocenos-cards-section {
    padding: 60px 20px;
  }
  
  .conocenos-card {
    height: 300px;
    margin-bottom: 25px;
  }
  
  .conocenos-card-image {
    height: 200px;
  }
  
  .conocenos-card-content {
    height: 100px;
    padding: 15px 15px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  
  .conocenos-card-title {
    font-size: 18px;
    text-align: center;
  }
  
  .conocenos-btn {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .conocenos-hero {
    height: 300px;
  }
  
  .conocenos-page-title {
    font-size: 28px;
  }
  
  .hero-title-overlay {
    padding: 12px 30px;
  }
  
  .conocenos-cards-section {
    padding: 50px 15px;
  }
  
  .conocenos-card {
    height: 280px;
  }
  
  .conocenos-card-image {
    height: 180px;
  }
  
  .conocenos-card-title {
    font-size: 16px;
  }
}