/* ============================================
   SECCIONES PRINCIPALES - ESTILO CAMPOSOL
   ============================================ */

/* Variables adicionales para secciones */
:root {
  --pa-verde: #a9c253;
  --pa-verde-oscuro: #8fa042;
  --pa-gris-claro: #f5f5f5;
  --pa-gris-medio: #e8e8e8;
  --pa-gris-texto: #4f5e6b;
  --pa-azul-oscuro: #003057;
  --spacing-section: 80px;
  --spacing-section-mobile: 50px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 0;
  margin: 0;
  position: relative;
}

/* ============================================
   ABOUT SECTION - Nuestra Empresa
   ============================================ */
.about-section {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.about-section .site-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pa-azul-oscuro);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.about-section .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--pa-gris-texto);
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-weight: 400;
}

.about-section .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  background: var(--pa-verde);
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-section .btn:hover {
  background: var(--pa-verde-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 196, 83, 0.3);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: var(--spacing-section) 0;
  background: var(--pa-gris-claro);
}

.products-section .site-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pa-azul-oscuro);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.products-section .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--pa-gris-texto);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

/* ============================================
   GRID DE PRODUCTOS ESTILO CAMPOSOL
   ============================================ */

/* Grid: 3 columnas desktop, 2 tablet, 1 móvil */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 3rem;
}

/* Tarjetas de productos estilo Camposol */
.product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Contenedor de imagen - ocupa la parte superior */
.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--pa-gris-claro);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder si la imagen no carga */
.product-image::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--pa-gris-medio);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  z-index: 1;
}

/* Si la imagen no existe, mostrar placeholder */
.product-image img[src=""],
.product-image img:not([src]) {
  opacity: 0;
}

/* Overlay discreto al hover */
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(169, 196, 83, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* Efecto hover estilo Camposol */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(169, 196, 83, 0.3);
}

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

.product-card:hover::after {
  background: rgba(169, 196, 83, 0.05);
}

/* Información del producto - parte inferior */
.product-info {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pa-azul-oscuro);
  margin: 0;
  padding: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Descripción opcional que aparece al hover */
.product-card .product-description {
  font-size: 0.9rem;
  color: var(--pa-gris-texto);
  line-height: 1.5;
  margin-top: 0.75rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.product-card:hover .product-description {
  opacity: 1;
  max-height: 100px;
  margin-top: 0.75rem;
}

.products-section .btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--pa-azul-oscuro);
  border: 2px solid var(--pa-azul-oscuro);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-section .btn-secondary:hover {
  background: var(--pa-azul-oscuro);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 48, 87, 0.2);
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.certifications-section .site-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.certifications-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pa-azul-oscuro);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.certifications-section > .site-container > p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--pa-gris-texto);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.certifications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
}

.cert-item {
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pa-azul-oscuro);
  border: 1px solid var(--pa-gris-medio);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-item:hover {
  background: #ffffff;
  color: var(--pa-azul-oscuro);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--pa-verde);
}

.cert-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.cert-item:hover .cert-icon {
  transform: scale(1.1);
}

.cert-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pa-azul-oscuro);
  line-height: 1.3;
  margin-top: 0.5rem;
}

.certifications-section .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  background: var(--pa-azul-oscuro);
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certifications-section .btn-primary:hover {
  background: var(--pa-verde);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 48, 87, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
  :root {
    --spacing-section: 60px;
  }

  .about-section h2,
  .products-section h2,
  .certifications-section h2 {
    font-size: 1.9rem;
  }

  /* Tablet: 2 columnas */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .product-image {
    height: 220px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  :root {
    --spacing-section: 45px;
    --spacing-section-mobile: 45px;
  }

  .about-section,
  .products-section,
  .certifications-section {
    padding: 45px 0;
  }

  .about-section h2,
  .products-section h2,
  .certifications-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .about-section .lead,
  .products-section .section-subtitle,
  .certifications-section > .site-container > p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  /* Tablet: 2 columnas */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-image {
    height: 180px;
  }

  .product-info {
    padding: 1.25rem 1rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .certifications-list {
    gap: 12px;
    justify-content: center;
  }

  .cert-item {
    padding: 1rem;
    font-size: 0.85rem;
    min-width: 120px;
    gap: 0.5rem;
  }

  .cert-icon {
    width: 55px;
    height: 55px;
  }

  .cert-name {
    font-size: 0.8rem;
  }

  .about-section .btn,
  .products-section .btn-secondary,
  .certifications-section .btn-primary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/* Móvil */
@media (max-width: 576px) {
  :root {
    --spacing-section: 35px;
    --spacing-section-mobile: 35px;
  }

  .about-section,
  .products-section,
  .certifications-section {
    padding: 35px 0;
  }

  .about-section h2,
  .products-section h2,
  .certifications-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .about-section .lead,
  .products-section .section-subtitle,
  .certifications-section > .site-container > p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Móvil: 1 columna */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-image {
    height: 180px;
  }

  .product-info {
    padding: 1.25rem 1rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  /* Certificaciones: 2 columnas en móvil */
  .certifications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cert-item {
    width: 100%;
    max-width: none;
    padding: 0.85rem 0.5rem;
    min-width: auto;
    border-radius: 8px;
  }

  .cert-icon {
    width: 45px;
    height: 45px;
  }

  .cert-name {
    font-size: 0.7rem;
  }
}

/* Móvil pequeño */
@media (max-width: 400px) {
  .about-section,
  .products-section,
  .certifications-section {
    padding: 30px 0;
  }

  .about-section h2,
  .products-section h2,
  .certifications-section h2 {
    font-size: 1.2rem;
  }

  .product-image {
    height: 160px;
  }

  .cert-item {
    padding: 0.75rem 0.4rem;
  }

  .cert-icon {
    width: 40px;
    height: 40px;
  }

  .cert-name {
    font-size: 0.65rem;
  }
}

/* ============================================
   PRODUCTOS BANNER HORIZONTAL ESTILO CAMPOSOL
   ============================================ */

/* Sección de banner horizontal sin separaciones */
.products-banner-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* Contenedor flex sin gaps - imágenes continuas */
.products-banner-container {
  display: flex;
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Cada item de producto ocupa espacio igual */
.product-banner-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Imagen que ocupa todo el espacio */
.product-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay con nombre del producto */
.product-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1.5rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.product-banner-overlay h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Efecto hover: expande la imagen y muestra más información */
.product-banner-item:hover {
  flex: 1.5;
  z-index: 10;
}

.product-banner-item:hover img {
  transform: scale(1.1);
}

.product-banner-item:hover .product-banner-overlay {
  background: linear-gradient(to top, rgba(169, 196, 83, 0.85) 0%, rgba(169, 196, 83, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  padding-bottom: 3rem;
}

/* Responsive: en móvil se apilan verticalmente */
@media (max-width: 768px) {
  .products-banner-container {
    height: auto;
    flex-wrap: wrap;
  }

  .product-banner-item {
    min-width: 50%;
    height: 180px;
    flex: 0 0 50%;
  }

  .product-banner-item:hover {
    flex: 0 0 50%;
  }

  .product-banner-overlay {
    padding: 12px;
  }

  .product-banner-overlay h3 {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 576px) {
  .products-banner-container {
    flex-direction: column;
    height: auto;
  }

  .product-banner-item {
    min-width: 100%;
    height: 150px;
    flex: 0 0 100%;
  }

  .product-banner-item:hover {
    flex: 0 0 100%;
  }

  .product-banner-overlay {
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .product-banner-overlay h3 {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 400px) {
  .product-banner-item {
    height: 130px;
  }

  .product-banner-overlay h3 {
    font-size: 0.9rem;
  }
}

/* ============================================
   SECCIÓN FILOSOFÍA ESTILO CAMPOSOL
   ============================================ */

.philosophy-section {
  padding: 0;
  background: #ffffff;
  width: 100%;
  overflow: hidden;
}

.philosophy-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: stretch;
}

/* Columna Izquierda: Filosofía */
.philosophy-left {
  padding: 80px 60px 80px 80px;
  background: #ffffff;
  width: 100%;
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  line-height: 1.1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  text-align: left;
}

/* Columna Derecha: Banner y Panel */
.philosophy-right {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-width: 400px;
  background: #2a2a2a;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 3px
    );
  background-size: 4px 4px;
}

/* Banner verde superior */
.philosophy-banner {
  background: var(--pa-verde);
  padding: 30px 40px;
  position: relative;
  z-index: 2;
}

.philosophy-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.philosophy-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.philosophy-icon-item {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.philosophy-icon-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.philosophy-icon-item svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.philosophy-banner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Panel oscuro tipo pizarra */
.philosophy-panel {
  background: transparent;
  padding: 50px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.philosophy-testimonial {
  flex: 1;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-bottom: 2rem;
  text-align: left;
}

.testimonial-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.philosophy-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--pa-verde);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
  max-width: 300px;
}

.philosophy-btn:hover {
  background: var(--pa-verde-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 196, 83, 0.4);
}

/* Responsive Filosofía */
@media (max-width: 1024px) {
  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .philosophy-left {
    padding: 45px 25px;
  }

  .philosophy-right {
    min-width: 100%;
  }

  .philosophy-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .philosophy-content p {
    text-align: center;
  }

  .philosophy-panel {
    padding: 35px 25px;
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 1.15rem;
    text-align: center;
  }

  .testimonial-author {
    text-align: center;
  }

  .philosophy-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .philosophy-left {
    padding: 35px 20px;
  }

  .philosophy-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
  }

  .philosophy-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
  }

  .philosophy-banner {
    padding: 20px;
  }

  .philosophy-banner-content {
    align-items: center;
  }

  .philosophy-icons {
    justify-content: center;
  }

  .philosophy-banner h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .philosophy-panel {
    padding: 30px 20px;
    min-height: 280px;
    text-align: center;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .testimonial-author {
    text-align: center;
  }

  .philosophy-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .philosophy-left {
    padding: 30px 15px;
  }

  .philosophy-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .philosophy-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: justify;
  }

  .philosophy-banner {
    padding: 18px 15px;
  }

  .philosophy-banner-content {
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .philosophy-icons {
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .philosophy-icon-item {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .philosophy-icon-item svg {
    width: 18px;
    height: 18px;
  }

  .philosophy-banner h3 {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
  }

  .philosophy-panel {
    padding: 25px 15px;
    min-height: auto;
    text-align: center;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .testimonial-author {
    font-size: 0.85rem;
    text-align: center;
  }

  .philosophy-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

@media (max-width: 400px) {
  .philosophy-title {
    font-size: 1.15rem;
  }

  .philosophy-content p {
    font-size: 0.85rem;
  }

  .philosophy-banner h3 {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* ============================================
   BANNER VERDE CON TEXTO SCRIPT
   ============================================ */

.export-banner-section {
  width: 100%;
  background: #aac353;
  padding: 60px 20px;
  margin: 0;
  overflow: hidden;
}

.export-banner-content {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.export-banner-text {
  font-family: 'Dancing Script', 'Brush Script MT', 'Lucida Handwriting', cursive;
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive para banner verde */
@media (max-width: 1024px) {
  .export-banner-section {
    padding: 50px 20px;
  }

  .export-banner-text {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .export-banner-section {
    padding: 40px 20px;
  }

  .export-banner-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .export-banner-section {
    padding: 35px 15px;
  }

  .export-banner-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

/* ============================================
   FEATURED VIDEO Y LATEST NEWS SECTION
   ============================================ */

.featured-news-section {
  background: #1a1a1a;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 3px
    ),
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 4px 4px, 4px 4px, 8px 8px;
  padding: 80px 0;
  width: 100%;
}

.featured-news-section .site-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-family: 'Inter', Arial, sans-serif;
  text-align: left;
}

/* Featured Video */
.featured-video-col {
  width: 100%;
}

.featured-video-wrapper {
  position: relative;
  width: 100%;
  border: 2px solid #a9c353;
  overflow: hidden;
  background: #000000;
}

.featured-video-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Reproductor de video */
.featured-video-player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #000000;
}

/* Ocultar controles nativos del video */
.featured-video-player::-webkit-media-controls {
  display: none !important;
}

.featured-video-player::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Overlay de reproducción */
.video-play-overlay,
.video-pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-pause-overlay {
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-video-wrapper:hover .video-pause-overlay {
  opacity: 1;
}

.play-btn-large,
.pause-btn-large {
  transition: transform 0.3s ease;
}

.play-btn-large:hover,
.pause-btn-large:hover {
  transform: scale(1.15);
}

.play-btn-large svg,
.pause-btn-large svg {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-button {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Latest News */
.latest-news-col {
  width: 100%;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  background: #ffffff;
  border: 2px solid #a9c353;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(169, 196, 83, 0.3);
}

.news-date {
  background: #a9c353;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 120px;
  text-align: center;
  height: fit-content;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  font-family: 'Inter', Arial, sans-serif;
}

.news-excerpt {
  font-size: 0.95rem;
  color: #4f5e6b;
  line-height: 1.6;
  margin: 0 0 15px 0;
  font-family: 'Inter', Arial, sans-serif;
}

.news-link {
  color: #a9c353;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  font-family: 'Inter', Arial, sans-serif;
}

.news-link:hover {
  color: #8ba042;
}

/* Responsive Featured News */
@media (max-width: 1024px) {
  .featured-news-section {
    padding: 55px 0;
  }

  .featured-news-grid {
    gap: 35px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .featured-news-section {
    padding: 45px 0;
  }

  .featured-news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .news-list {
    gap: 20px;
  }

  .news-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .news-date {
    width: 100%;
    min-width: auto;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .featured-news-section {
    padding: 35px 0;
  }

  .featured-news-grid {
    gap: 35px;
  }

  .section-title {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .featured-video-wrapper {
    border-width: 1px;
  }

  .news-list {
    gap: 15px;
  }

  .news-item {
    padding: 15px;
    border-width: 1px;
  }

  .news-date {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .news-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .news-excerpt {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .news-link {
    font-size: 0.8rem;
  }

  /* Video controls responsive */
  .play-btn-large svg,
  .pause-btn-large svg {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 400px) {
  .featured-news-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 0.95rem;
  }

  .news-item {
    padding: 12px;
  }

  .news-title {
    font-size: 0.9rem;
  }

  .news-excerpt {
    font-size: 0.8rem;
  }

  .play-btn-large svg,
  .pause-btn-large svg {
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   RECETAS DESTACADAS SECTION
   ============================================ */

.featured-recipes-section {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.featured-recipes-section .site-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.recipes-section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Inter', Arial, sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.recipe-card {
  background: #ffffff;
  border-radius: 0;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 15px;
  border-radius: 4px;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.recipe-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', Arial, sans-serif;
  min-height: auto;
  display: block;
}

.recipes-button-container {
  text-align: center;
  margin-top: 50px;
}

.btn-recipes {
  display: inline-block;
  padding: 14px 35px;
  background: #a9c353;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: 'Inter', Arial, sans-serif;
  border: none;
  cursor: pointer;
}

.btn-recipes:hover {
  background: #8ba042;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 196, 83, 0.4);
}

/* Responsive Recetas */
@media (max-width: 1024px) {
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .recipes-section-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
  }

  .recipe-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .featured-recipes-section {
    padding: 60px 0;
  }

  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .recipe-image {
    height: 220px;
  }

  .recipe-title {
    font-size: 0.95rem;
  }

  .recipes-section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }

  .btn-recipes {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recipe-image {
    height: 250px;
  }

  .recipes-section-title {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
  }

  .btn-recipes {
    padding: 12px 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

