:root{
  --verde-oscuro:#1f3d1b;
  --verde:#2e5d2a;
  --verde-claro:#6b8f3a;
  --amarillo:#d9a520;
  --crema:#f6ecd8;
  --blanco:#ffffff;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:'Poppins',sans-serif;
  background:var(--verde-oscuro);
  color:var(--blanco);
  scroll-behavior:smooth;
}

section{padding:90px 8%}

/* HEADER */
header{
  position:fixed;
  top:0;left:0;width:100%;
  background:rgba(31,61,27,.95);
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
}

.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:22px}
.logo img{height:40px}

nav a{
  color:#fff;
  margin-left:25px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}
nav a:hover{color:var(--amarillo)}

/* ===============================
   INICIO (HERO)
================================ */

.inicio {
  margin-top: 90px;
  background: var(--crema);
  border-radius: 30px;
  overflow: hidden;
}

/* Contenedor interno */
.inicio-contenido {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  min-height: 420px;
}

/* ===== IMAGEN ===== */
.inicio-imagen {
  position: relative;
  height: 100%;
}

.inicio-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FUSIÓN SUAVE */
.inicio-imagen::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(248, 243, 232, 0),
    var(--crema)
  );
}

/* ===== TEXTO ===== */
.inicio-texto {
  padding: 60px;
  color: #2e4b1f;
}

.inicio-texto h1 {
  font-size: 42px;
  font-weight: 800;
  color: #2f5a23;
  margin-bottom: 20px;
}

.inicio-texto p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}
/* PRODUCTOS */
#productos{background:var(--verde)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px;margin-top:40px}
.card{background:linear-gradient(180deg,var(--verde-claro),var(--verde));border-radius:25px;padding:20px;transition:.3s}
.card:hover{transform:translateY(-8px)}
.card img{width:100%;border-radius:20px;margin-bottom:15px}

/* TRAYECTORIA */
.trayectoria{
  background:#1f3d1b;
}

.trayectoria-title{
  text-align:center;
  font-size:48px;
  font-weight:800;
  margin-bottom:60px;
  color:#fff;
}

.trayectoria-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.tray-card{
  border-radius:22px;
  overflow:hidden;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tray-card.image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tray-card.text{
  padding:28px;
  color:#fff;
  text-align:left;
}

.tray-card.text h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:6px;
}

.tray-card.text h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:14px;
}

.tray-card.text p{
  font-size:15px;
  line-height:1.6;
}

.tray-card.green{background:#3c5f2d}
.tray-card.olive{background:#6c7f2f}
.tray-card.yellow{background:#e0aa14}
.tray-card.gold{background:#c8ab55}

@media(max-width:1100px){
  .trayectoria-cards{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:600px){
  .trayectoria-cards{grid-template-columns:1fr}
}

@media(max-width:900px){
  #inicio{grid-template-columns:1fr}
  .carousel img{min-width:100%}
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #264b0f;
}
/* ===== INICIO ===== */
.inicio {
  background: #f6eedc;
  padding: 90px 6%;
}

.inicio-contenido {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Imagen */
.inicio-imagen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.inicio-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Capa de fusión */
.inicio-imagen .fusion {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(246, 238, 220, 0) 0%,
    rgba(246, 238, 220, 0.35) 45%,
    rgba(246, 238, 220, 0.7) 70%,
    #f6eedc 100%
  );
}
.inicio-texto h1 {
  font-size: 46px;
  font-weight: 800;
  color: #2f4f1e;
  margin-bottom: 20px;
}

.inicio-texto p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a4f24;
  max-width: 520px;
}
.inicio-texto {
  position: relative;
  z-index: 2;
}

/* ===== TRAYECTORIA ===== */
.trayectoria {
  padding: 80px 8%;
}

.trayectoria h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
}

/* Grid */
.trayectoria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tarjetas */
.trayectoria-card {
  border-radius: 22px;
  min-height: 330px;
  color: #fff;
}

/* Texto */
.trayectoria-card.texto {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trayectoria-card .anio {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.trayectoria-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.trayectoria-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Imagen */
.trayectoria-card.imagen {
  padding: 0;
  overflow: hidden;
}

.trayectoria-card.imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Colores */
.verde-oscuro { background: #2f4f1e; }
.verde-oliva  { background: #6f7f2e; }
.amarillo     { background: #e0a800; }
.dorado       { background: #c9a84f; }

/* Responsive */
@media (max-width: 1100px) {
  .trayectoria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trayectoria-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACTO ===== */
.contacto {
  background: #264b0f;
  padding: 80px 6%;
}

.contacto-contenedor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* Caja amarilla */
.contacto-info {
  background: #d6a61e;
  border-radius: 26px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}

.contacto-info h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* Logo */
.logo-contacto {
  width: 90px;
  margin: 0 auto 20px;
  display: block;
}

/* Texto */
.contacto-info p {
  font-size: 15px;
  margin-bottom: 10px;
}

.contacto-info .telefono {
  font-weight: 600;
}

.contacto-info .redes {
  margin-top: 15px;
}

/* Iconos */
.iconos {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 15px 0;
}

.iconos a {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.iconos a:hover {
  transform: scale(1.1);
  background: #f1f1f1;
}

.iconos img {
  width: 20px;
}

/* Imagen derecha */
.contacto-imagen {
  border-radius: 26px;
  overflow: hidden;
}

.contacto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .contacto-contenedor {
    grid-template-columns: 1fr;
  }
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
/* ===== FOOTER ===== */
.footer {
  background: #1f3f0b;
  padding: 60px 6% 30px;
  color: #ffffff;
}

.footer-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* Logo */
.footer-logo img {
  width: 90px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #d6a61e;
  font-weight: 600;
}

/* Links */
.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d6a61e;
}

/* Redes */
.footer-redes {
  display: flex;
  gap: 18px;
}

.footer-redes a {
  width: 42px;
  height: 42px;
  background: #d6a61e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-redes a:hover {
  transform: translateY(-4px);
  background: #e8bc3f;
}

.footer-redes img {
  width: 20px;
}

/* Copy */
.footer-copy {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 13px;
  color: #cccccc;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    gap: 15px;
  }
}
/* ===== PRESENTE ===== */
.presente {
  background: #264b0f;
  padding: 90px 6%;
}

.presente-contenedor {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Imagen */
.presente-imagen {
  border-radius: 26px;
  overflow: hidden;
}

.presente-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto */
.presente-texto {
  background: #6f7f2e;
  border-radius: 26px;
  padding: 50px 45px;
  text-align: center;
  color: #ffffff;
}

.presente-texto h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.presente-texto h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.presente-texto p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .presente-contenedor {
    grid-template-columns: 1fr;
  }

  .presente-texto {
    padding: 40px 30px;
  }
}



