/* entradas-style.css - Diseño adaptado de home-style.css para página de entregas */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #2c3e50;
  line-height: 1.6;
}
.main-entregas {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Clases específicas para secciones de ancho completo (solo fondo) */
.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
}
/* Sección Hero */
.hero-section {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 4px solid #27ae60;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: #7f8c8d;
  margin-bottom: 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.hero-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.2);
}
.card-icon {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 20px;
}
.hero-card h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}
.hero-card p,
.hero-card ul {
  font-size: 1.1rem;
  color: #34495e;
}
.hero-card ul {
  list-style: none;
  padding: 0;
}
.hero-card ul li {
  margin-bottom: 10px;
}
/* Separador */
.section-divider {
  text-align: center;
  margin: 60px 0;
  position: relative;
}
.divider-icon {
  font-size: 2.5rem;
  color: #27ae60;
  background: #ffffff;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #bdc3c7, transparent);
}
/* Sección Socio */
.partner-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.partner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out;
}
.section-intro {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #7f8c8d;
}
.partner-logo {
  max-width: 300px;
  margin: 0 auto 40px;
}
.partner-logo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.partner-details {
  max-width: 800px;
  margin: 0 auto;
}
.partner-details h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}
.partner-details ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #34495e;
}
.partner-details ul li {
  margin-bottom: 15px;
}
/* Sección Proceso */
.process-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}
.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.process-step {
  background: linear-gradient(135deg, #e8f5e9 0%, #d5f5e3 100%);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.process-step:hover {
  transform: scale(1.05);
}
.step-icon {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 15px;
}
.process-step h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 1rem;
  color: #34495e;
}
/* Sección Costos */
.costs-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("<?php echo get_template_directory_uri(); ?>/images/background-entregas.jpg")
      center/cover no-repeat;
  color: #2c3e50;
  text-align: center;
}
.costs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.cost-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
  transition: transform 0.3s ease;
}
.cost-card:hover {
  transform: translateY(-10px);
}
.cost-card h3 {
  font-size: 1.8rem;
  color: #27ae60;
  margin-bottom: 20px;
}
.cost-card ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #34495e;
}
.cost-card ul li {
  margin-bottom: 10px;
}
.cta-btn {
  background: #27ae60;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.cta-btn:hover {
  background: #1b7744;
}
/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform; /* Mejora rendimiento */
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Responsividad */
@media (max-width: 1024px) {
  .hero-title,
  .section-title {
    font-size: 2.8rem;
  }
  .hero-grid,
  .process-grid,
  .costs-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-section,
  .partner-section,
  .process-section,
  .costs-section {
    padding: 60px 0;
  }
  .hero-title,
  .section-title {
    font-size: 2.5rem;
  }
  .hero-container,
  .partner-container,
  .process-container,
  .costs-container {
    padding: 0 10px;
  }
}
