/* basic */


:root {
  --color-primary: #ffffff;         /* Blanco */
  --color-secondary: #195734;       /* Verde medio */
  --color-accent: #e8f5e9;          /* Verde muy claro para fondos */
  --color-text: #111111;            /* Texto oscuro para legibilidad */
  --color-hover: #0d3d25;           /* Hover para botones */
  --color-border: #ccc;             /* Bordes suaves */
  --max-width: 1200px;
  --radius: 8px;
  --transition: all 0.3s ease;

  --bg:#ffffff;           /* Fondo blanco */
  
  --brand:#195734;        /* Verde corporativo */
  --brand-deep:#133f27;   /* Tono más oscuro */
  --metal-1:#e8efe9;      /* Borde metálico suave */
  --metal-2:#b9c8bf;
  --paper:#ffffff;
}

h1 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Negrita */
}

h2 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Negrita */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--color-text);
  background-color: #f2f2f2;
  background-size: cover;
  scroll-behavior: smooth;
  height: 100%;
  overscroll-behavior-y: contain;
}

body.fondo-catalogo {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--color-text);
  background-color: #f2f2f2;
  background-size: cover;
}



/* BARRA SUPERIOR AL HEADER */
.top-bar {
  background-color: #f2f2f2;
  padding: 8px 0;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 40px; /* Aumenta separación a los bordes */
}

.top-left a,
.top-right a {
  color: #333;
  text-decoration: none;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-right a {
  margin-right: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll; /* <<< Esto es la clave */
}



.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  /* NO display: flex aquí */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* BARRA MEDIA (PROFESIONAL) */
/* Cintillo superior neutro */
.mid-bar{
  background-color: #f2f2f2;
  padding:15px 0;
  text-align: center;
}

/* Placa ejecutiva (botón interactivo) */
.signature-tag{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 0;
  border-radius: 44px;
  color: var(--paper);
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 -1px 0 rgba(0,0,0,.10) inset,
    var(--shadow);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  outline: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}


/* Tooltip corporativo */
.signature-tag::after{
  content: attr(data-tooltip);
  position: absolute;
  left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  background: #0e2418;
  color: #fff;
  font: 600 12px/1 "Segoe UI", Roboto, Arial, sans-serif;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.signature-tag:hover::after,
.signature-tag:focus-visible::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Icono */
.signature-tag__icon{
  width:18px; height:18px;
  fill:#dff2e8;
  opacity:.95;
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

/* Texto ultra legible */
.signature-tag__text{
  font: 700 18px/1.15 "Segoe UI", Roboto, Arial, system-ui, sans-serif;
  letter-spacing:.3px;
  white-space: nowrap;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index:1;
}

/* Línea de calidad (respira lento) */
.signature-tag__underline{
  position:absolute;
  left:22px; right:22px; bottom:8px;
  height:2px; border-radius:2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity:.65;
  transform-origin:center;
  animation: breathe 4.5s ease-in-out infinite;
  pointer-events:none;
}

/* Interacción visible */
.signature-tag:hover,
.signature-tag:focus-visible{
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(25,87,52,.28),
    0 1px 0 rgba(255,255,255,.22) inset,
    0 -1px 0 rgba(0,0,0,.12) inset;
}
.signature-tag:active{
  transform: translateY(0);               /* Feedback de clic */
  filter: brightness(0.98);
}
.signature-tag:hover .signature-tag__icon,
.signature-tag:focus-visible .signature-tag__icon{
  transform: translateY(-1px) scale(1.04);
  opacity:1; filter: saturate(1.1);
}

/* Ripple (se añade dinámicamente) */
.signature-tag .ripple{
  position: absolute;
  width: 12px; height: 12px;
  left: var(--rx); top: var(--ry);
  translate: -50% -50%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,.25) 40%, rgba(255,255,255,0) 70%);
  animation: ripple .6s ease-out forwards;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Animaciones base */
@keyframes border-sweep{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes breathe{
  0%,100% { transform: scaleX(.35); opacity:.45; }
  50%     { transform: scaleX(1);   opacity:.85; }
}
@keyframes ripple{
  from { opacity:.65; transform: scale(.5); }
  to   { opacity:0;   transform: scale(8);  }
}

/* Respeto a reducción de movimiento */
@media (prefers-reduced-motion: reduce){
  .signature-tag::before,
  .signature-tag__underline{
    animation: none !important;
  }
  .signature-tag,
  .signature-tag__icon{
    transition: none !important;
  }
}








/* HEADER */
header {
  background-color: #fff;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.logo-img {
  height: 60px;
  max-width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}



/* NAVEGACIÓN HEADER */
nav {
  display: flex;
  align-items: center; /* centra verticalmente los enlaces */
  justify-content: center; /* opcional si quieres centrar horizontalmente el menú */
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: var(--transition);
}
nav a:hover::after {
  width: 100%;
}







/* HERO */
.hero {
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: var(--color-primary);
  padding: 0.15rem 1rem;
  text-align: center;
  border-radius: var(--radius);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.55rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  background: var(--color-text);
  color: var(--color-primary);
  padding: 0.70rem 2rem;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn:hover {
  background: var(--color-hover);
}



/* SECTIONS */
section {
  scroll-margin-top: 100px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

h2 {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Negrita */
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}



/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--color-accent);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
}



/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
input,
textarea {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
}
button {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
}
button:hover {
  background: var(--color-hover);
}

/* FOOTER */
.footer {
  background-color: #072700;
  color:  #f2f2f2;;
  font-size: 14px;
  padding-top: 40px;
  margin-top: 60px;
}


.footer a {
  color: #fff; /* Enlaces en blanco */
  text-decoration: none;
}



.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-column {
  gap: 60px;
  text-align: left;
  flex: 1 1 250px;
  margin: 1px;
  padding: 15px;
}

.footer-column1 {
  gap: 60px;
  text-align: left;
  flex: 1 1 250px;
  margin: 1px;
  padding: 15px;
}

.footer-column2 {
  gap: 60px;
  text-align: right;
  flex: 1 1 250px;
  margin: 1px;
  padding: 15px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-column p {
  
  color: #ffffff; 
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #000000;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  font-size: 13px;
  background-color: #000000;
}


.legal-footer {
  background-color: #111;   /* fondo oscuro */
  padding: 20px;
}

.legal-links {
  display: left;
  flex-direction: column;   /* los pone en vertical */
  gap: 39px;                /* separación entre enlaces */
  align-items: right;    /* alinea los enlaces a la derecha */
}

.legal-links a {
  color: #fff;              /* texto blanco */
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;      /* espacio entre letras */
}














/* DIAPOSITIVA PRINCIPAL */
/* TRANSICIONES */

.slider-css {
  width: 100vw;
  height: 800px; /* ajusta altura como necesites */
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.8s ease;
  height: 100%;
}

.slides img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(25, 87, 52, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.arrow:hover {
  background: rgba(13, 61, 37, 0.8);
}
.arrow.prev {
  left: 20px;
}
.arrow.next {
  right: 20px;
}



/* FORMULARIO CONTACTO */
.form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.form-group {
  width: 100%;
  margin-bottom: 1rem;
}

 .form-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: sans-serif;
    font-size: 14px;
  }


.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00970d;
  box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.2);
}

.form-button {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background-color: #04690c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #005fa3;
}

.titulo-contacto {
  font-family: 'Lato', sans-serif;
  font-weight: 900; /* Puedes usar 300 o 400 si prefieres más fino */
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .titulo-contacto {
    font-size: 1.5rem;
  }

  .fake-input {
    padding: 0.7rem 0.8rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .fake-input a {
    font-size: 1rem;
  }

  .form-container img {
    width: 80%;
    max-width: 250px;
  }
}


/* PROVEEDORES */

#proveedores {
  padding: 4rem 1rem;
  background-color: #f3f3f3;
}

.proveedores-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.titulo-proveedores {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.grid-proveedores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  column-gap: 3rem; /* Espacio horizontal mayor */
  row-gap: 2rem;    /* Espacio vertical (igual o ajustable) */
  align-items: center;
  justify-items: center;
}

.proveedor-item img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.proveedor-item img:hover {
  filter: none;
}

html {
  scroll-behavior: smooth;
}



/* Sección base */
.corp-enum{
  background: var(--bg);
  padding: 48px 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* Contenedor centrado */
.corp-enum__container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabecera */
.corp-enum__header{
  text-align: center;
  margin-bottom: 32px;
}
.corp-enum__header h2{
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: .2px;
}
.corp-enum__subtitle{
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* Lista enumerada profesional */
.corp-enum__list{
  counter-reset: corp;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

/* Ítem */
.corp-enum__item{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  overflow: hidden;
}

/* Línea guía institucional a la izquierda (sutil) */
.corp-enum__item::before{
   content: ""; /* Tick */
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(25,87,52,.12), rgba(25,87,52,.35));
}

/* Interacción sobria */
.corp-enum__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  border-color: rgba(25,87,52,.25);
}

/* Medallón con tick verde */
.corp-enum__badge{
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(25,87,52,.25);
  display: grid; 
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #198754; /* verde */
  isolation: isolate;
}

.corp-enum__badge::before{
  content: "✔"; /* Tick verde */
  position: relative; 
  z-index: 1;
  font-size: 20px;
}

.corp-enum__badge::after{
  content:"";
  position: absolute; 
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(25,87,52,.12);
}

/* Contenido */
.corp-enum__content h3{
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .2px;
}
.corp-enum__content p{
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* Variante en columnas a partir de 992px (mantiene orden y numeración) */
@media (min-width: 992px){
  .corp-enum__list{
    grid-template-columns: repeat(3, 1fr);
  }
  .corp-enum__item{
    grid-template-columns: 56px 1fr;
    height: 100%;
  }
}

/* Respeto por reducción de movimiento */
@media (prefers-reduced-motion: reduce){
  .corp-enum__item{
    transition: none !important;
  }
}





/*HORARIO*/ 
.horario-section {
  padding: 3rem 1rem;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
}

.horario-titulo {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.horario-tabla {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.horario-fila {
  display: contents;
}

.horario-fila div {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background-color: #fafafa;
}

.horario-fila.encabezado div {
  background-color: #04690c;
  color: white;
  font-weight: 700;
  text-align: center;
}

.horario-fila.cerrado div:last-child {
  color: #cc0000;
  font-weight: 600;
}

@media (max-width: 600px) {
  .horario-tabla {
    grid-template-columns: 1fr;
  }

  .horario-fila div {
    border-bottom: 1px solid #ddd;
  }

  .horario-fila div:first-child {
    background-color: #f0f0f0;
    font-weight: 600;
  }

  .horario-fila.encabezado {
    display: none; /* Oculta encabezado en móvil */
  }
}

.horario-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

/* CONTENEDOR INDIVIDUAL */
.horario-box, .anotaciones-box {
  flex: 1 1 300px;
  max-width: 500px;
}


/* CALENDARIO */

.calendario-interactivo {
  padding: 2rem 1rem;
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.calendario-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #04690c;
  margin-bottom: 1rem;
}

.calendario-control button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #04690c;
}

.dias-semana {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #f0f0f0;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem 0;
  border-radius: 5px 5px 0 0;
}

.dias-semana div {
  font-size: 0.85rem;
}

.dias-mes {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.dia {
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  padding: 0.7rem 0.3rem;
  cursor: pointer;
  position: relative;
  min-height: 60px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.dia:hover {
  background: #eef7ff;
}

.dia.cerrado {
  background-color: #ffe5e5;
  color: #cc0000;
  border-color: #cc0000;
  font-weight: bold;
}

.dia .nota {
  font-size: 0.65rem;
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
}



/* index */

.hero-secundario {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 60%, #e0f1e1 100%);
  padding: 60px 20px;
}






.imagen-empresa {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.imagen-empresa:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05) saturate(1.1);
}


#contacto {
  background: #f9f9f9;
  padding: 80px 40px;
  font-family: 'Lato', sans-serif;
  color: #1b1b1b;
}



/* Para asegurarnos de que el contenido esté por encima */
.contacto-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
}

.form-container {
  flex: 1 1 38%;
  background-color: #f5f5f5;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contacto-wrapper {
    flex-direction: column;   /* Apilar los elementos */
    align-items: center;      /* Centrar en el eje horizontal */
    gap: 10px;                /* Menos separación */
    padding: 10px;            /* Mantener margen interno */
  }
}


.titulo-contacto {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0b3d0b;
  border-left: 5px solid #0b3d0b;
  padding-left: 16px;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 20px;
  font-size: 5px;
}

input,
textarea,
.fake-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  color: #333;
}

input:focus,
textarea:focus {
  border-color: #0b3d0b;
  outline: none;
}

.fake-input {
  background-color: #f3f3f3;
  line-height: 1.5;
}

.fake-input a {
  color: #04690c;
  text-decoration: none;
  font-weight: 600;
}

.fake-input a:hover {
  text-decoration: underline;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

.form-button {
  background-color: #024407;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #034f09;
}

.logo-contacto {
  margin-top: 10px;
  text-align: center;
  padding: 50px 10px;
}

.logo-contacto img {
  max-width: 500px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.logo-contacto img:hover {
  transform: scale(1.05);
}



.catalogo-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #ffffff, #f4fdf4);
  font-family: 'Lato', sans-serif;
}

.catalogo-titulo {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b3d0b;
  margin-bottom: 10px;
}

.catalogo-subtitulo {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.producto-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.producto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.producto-card h3 {
  font-size: 1.4rem;
  color: #04690c;
  margin: 20px 20px 10px;
}

.producto-card p {
  font-size: 1rem;
  color: #444;
  margin: 0 20px 20px;
  line-height: 1.6;
}


.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
} 
    




@media (max-width: 768px) {
  .form-container {
    flex: 1 1 100%;
  }
}




.en-construccion {
  background: linear-gradient(to right, #195734 0%, #ffffff 60%, #e8f5e9 100%);
  padding: 80px 20px;
  text-align: center;
  color: #000000;
  font-family: 'Lato', sans-serif;
}

.contenedor-construccion {
  max-width: 800px;
  margin: 0 auto;
}

.en-construccion h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.en-construccion p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}




/* 🔒 OCULTA LA HAMBURGUESA EN ESCRITORIO */
.menu-toggle {
  display: none;
}

/* ✅ MÓVIL: mostrar hamburguesa y ocultar menú horizontal */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    margin-left: auto;
  }

  #mainMenu {
    display: none;
    width: 100%;
    background-color: #f8f8f8;
    padding: 1rem 0;
  }

  #mainMenu.active {
    display: block;
  }

  #mainMenu ul {
    flex-direction: column;
    align-items: center;
  }

  #mainMenu li {
    margin: 0.8rem 0;
  }
}

/* ✅ ESCRITORIO: mostrar menú normal y ocultar hamburguesa */
@media (min-width: 769px) {
  #mainMenu {
    display: block !important;
  }

  #mainMenu ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .menu-toggle {
    display: none !important;
  }
}




.presentacion-mod {
  padding: 80px 20px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 60%, #e0f1e1 100%);
  font-family: 'Lato', sans-serif;
  text-align: center;
}

.presentacion-mod-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.presentacion-mod-texto {
  max-width: 800px;
}

.presentacion-mod-texto h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0b3d0b;
}

.presentacion-mod-texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #111;
  text-align: justify; 
}


.presentacion-mod-imagen img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.presentacion-mod-imagen img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05) saturate(1.1);
}

/* Escritorio lado a lado */
@media (min-width: 992px) {
  .presentacion-mod-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .presentacion-mod-texto {
    flex: 1;
    padding-right: 40px;
  }

  .presentacion-mod-imagen {
    flex: 1;
    text-align: center;
  }
}

/*cookies*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  font-family: 'Lato', sans-serif;
  display: flex;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.cookie-banner-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.cookie-banner a {
  color: #195734;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-buttons #acceptCookies {
  background-color: #195734;
  color: #fff;
}

.cookie-buttons .secondary {
  background-color: #e5e5e5;
  color: #333;
}



/*catalogo*/
.video-section {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  width: 100%;
  max-width: 960px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}


/* Alineación horizontal de la casilla de política de privacidad */
.form-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

.form-group label input[type="checkbox"] + a,
.form-group label input[type="checkbox"] + span,
.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

.form-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.2;
  }

  @media (max-width: 600px) {
  .form-group label {
    flex-direction: column;   /* Apila checkbox y texto */
    align-items: flex-start;  /* Que el texto quede alineado a la izquierda */
    gap: 0.3;              /* Menos espacio entre ellos */
  }
}

  .form-group a {
    text-decoration: underline;
    color: #00490a;
    white-space: nowrap; /* evita salto de línea en el enlace */
    
  }


/* Estilo general */
.site-header {
  position: relative;
  background-color: white;
  z-index: 1000;
}

/* Logo y botón en la cabecera */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}







/* Botón hamburguesa */
.hamburger-btn {
  display: none;
  font-size: 2rem;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
}

/* Menú emergente full-screen translúcido */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.mobile-menu-content {
  background: rgba(255, 255, 255, 0.9);
  width: 80%;
  max-width: 320px;
  height: 100%;
  padding: 2rem;
  overflow-y: auto;
  position: relative;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-in-out;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}

.mobile-menu-content li {
  margin-bottom: 1.5rem;
}

.mobile-menu-content a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Botón cerrar */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

/* Solo para móvil */
@media (max-width: 768px) {
  nav#mainMenu {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  header {
    position: relative;
  }
}

/* Animaciones suaves */
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}





.privacidad-label {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacidad-label a {
  color: #0077cc;
  text-decoration: underline;
  font-weight: 500;
}

.privacidad-label input[type="checkbox"] {
  margin-right: 0.4rem;
}


.marco {
  border: 2px solid #ffffff;      /* Borde negro de 2px */
  padding: 10px;               /* Espacio interno */
  display: inline-block;       /* Ajusta el tamaño al contenido */
  border-radius: 5px;          /* Bordes redondeados (opcional) */
  background-color: #ffffff;   /* Fondo claro (opcional) */
}
















