/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {

  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Lato", sans-serif;
  --nav-font: "Lato", sans-serif;

}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #030303;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #385723;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #385723;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #385723;
  /* The default color of the main navmenu links */
  --nav-hover-color: #2D461C;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #385723;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2D461C;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #385723;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #385723;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# ITP Section
--------------------------------------------------------------*/

.itp {
  padding: 70px 0 80px;
}

.itp-intro {
  margin-bottom: 35px;
}

.itp-intro h2 {
  margin: 0;
  color: #385723;
  font-size: 42px;
  font-weight: 700;
}

.itp-line {
  width: 55px;
  height: 3px;
  margin: 15px 0 18px;
  background: #385723;
  border-radius: 3px;
}

.itp-intro p {
  max-width: 900px;
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}


/*--------------------------------------------------------------
# ITP Lista
--------------------------------------------------------------*/

.itp-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itp-item {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e8e2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}


/*--------------------------------------------------------------
# ITP Header
--------------------------------------------------------------*/

.itp-header {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #385723;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.itp-titulo {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.itp-titulo>i {
  font-size: 23px;
  flex-shrink: 0;
}

.itp-titulo span {
  font-size: 17px;
  font-weight: 600;
}

.itp-header-derecha {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.itp-documentos {
  padding: 7px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
}

.itp-flecha {
  font-size: 17px;
  transition: transform 0.3s;
}


/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/

.itp-contenido {
  display: none;
  background: #fff;
}

.itp-item.activo .itp-contenido {
  display: block;
}


/*--------------------------------------------------------------
# Documento
--------------------------------------------------------------*/

.itp-documento {
  min-height: 88px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #e9ece7;
}

.itp-documento:last-child {
  border-bottom: 0;
}


/* PDF */

.pdf-icono {
  width: 45px;
  height: 48px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #e52b32;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(229, 43, 50, 0.15);
}


/* Nombre */

.documento-nombre {
  flex: 1;
  color: #444;
  font-size: 16px;
  line-height: 1.4;
}


/* Fecha */

.documento-fecha {
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.documento-fecha span {
  color: #999;
  font-size: 11px;
}

.documento-fecha span i {
  margin-right: 5px;
  color: #385723;
  font-size: 14px;
}

.documento-fecha strong {
  color: #555;
  font-size: 12px;
  font-weight: 500;
}


/* Botón */

.btn-documento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 145px;
  padding: 9px 13px;
  border: 1px solid #dfe5da;
  border-radius: 6px;
  color: #555;
  font-size: 13px;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-documento:hover {
  background: #385723;
  border-color: #385723;
  color: #fff;
}

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


/*--------------------------------------------------------------
# Aviso
--------------------------------------------------------------*/

.itp-aviso {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 20px 25px;
  border: 1px solid #dfe5da;
  border-radius: 10px;
  background: #f7f9f5;
}

.itp-aviso-icono {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #385723;
  border-radius: 50%;
  color: #385723;
  font-size: 21px;
}

.itp-aviso strong {
  display: block;
  margin-bottom: 3px;
  color: #333;
  font-size: 14px;
}

.itp-aviso p {
  margin: 0;
  color: #666;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .itp-documento {
    flex-wrap: wrap;
    gap: 15px;
  }

  .documento-nombre {
    flex: 1;
  }

  .documento-fecha {
    margin-left: 70px;
  }

}


@media (max-width: 575px) {

  .itp {
    padding: 50px 0 60px;
  }

  .itp-intro h2 {
    font-size: 32px;
  }

  .itp-intro p {
    font-size: 15px;
  }

  .itp-header {
    padding: 14px 16px;
  }

  .itp-titulo {
    gap: 10px;
  }

  .itp-titulo span {
    font-size: 14px;
  }

  .itp-header-derecha {
    gap: 8px;
  }

  .itp-documentos {
    display: none;
  }

  .itp-documento {
    padding: 15px;
  }

  .documento-nombre {
    font-size: 14px;
  }

  .documento-fecha {
    width: 100%;
    margin-left: 60px;
  }

  .btn-documento {
    margin-left: 60px;
  }

  .itp-aviso {
    align-items: flex-start;
    padding: 18px;
  }

}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 14px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 44px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

/* =========================================================
   INFORMACIÓN FITOSANITARIA
========================================================= */

.informacion-fitosanitaria {
  position: relative;

  width: 100%;

  padding: 100px 0;

  overflow: hidden;

  background:
    linear-gradient(135deg,
      #f7f9f5 0%,
      #edf3e9 45%,
      #ffffff 100%);
}


/* =========================================================
   CONTENEDOR
========================================================= */

.contenedor-informacion {

  width: calc(100% - 80px);

  max-width: 1500px;

  margin: 0 auto;
}


/* =========================================================
   ENCABEZADO
========================================================= */
.informacion-header {
    width:100%;
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
}

.informacion-titulo h2 {
    margin:0 0 12px;
    color:#385723;
    font-size:40px;
    font-weight:700;
    line-height:1.2;
}

.informacion-titulo h2::after {
    content:"";
    display:block;
    width:55px;
    height:3px;
    margin:18px auto 18px;
    background:#385723;
    border-radius:10px;
}

.informacion-titulo p {
    max-width:750px;
    margin:0 auto;
    color:#596355;
    font-size:15px;
    line-height:1.7;
}


/* =========================================================
   DECORACIÓN
========================================================= */

.informacion-decoracion {

  display: flex;

  gap: 7px;
}


.informacion-decoracion span {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #385723;

  opacity: .3;
}


.informacion-decoracion span:nth-child(2) {
  opacity: .5;
}


.informacion-decoracion span:nth-child(3) {
  opacity: .8;
}


/* =========================================================
   FILTROS
========================================================= */

.filtros-informacion {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 35px;
}


.filtro-info {

  padding: 10px 20px;

  border: 1px solid #d7e0d2;

  border-radius: 25px;

  background: transparent;

  color: #385723;

  font-family: inherit;

  font-size: 12px;

  cursor: pointer;

  transition: all .25s ease;
}


.filtro-info:hover {

  background: #e8efe4;
}


.filtro-info.activo {

  background: #385723;

  border-color: #385723;

  color: #ffffff;
}


/* =========================================================
   GRID
========================================================= */

.publicaciones-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}


/* =========================================================
   TARJETA
========================================================= */

.publicacion-card {

  display: flex;

  flex-direction: column;

  min-width: 0;

  overflow: hidden;

  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .06);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.publicacion-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(56, 87, 35, .12);
}


/* =========================================================
   TARJETA DESTACADA
========================================================= */

.publicacion-destacada {

  grid-column: span 2;

  display: grid;

  grid-template-columns: 1.1fr .9fr;
}


.publicacion-destacada .publicacion-imagen {

  height: 100%;

  min-height: 390px;
}


/* =========================================================
   IMAGEN
========================================================= */

.publicacion-imagen {

  position: relative;

  height: 220px;

  overflow: hidden;

  background: #e9eee6;
}


.publicacion-imagen img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}


.publicacion-card:hover .publicacion-imagen img {

  transform: scale(1.05);
}


/* =========================================================
   TIPO
========================================================= */

.publicacion-tipo {

  position: absolute;

  left: 18px;

  bottom: 18px;

  padding: 7px 12px;

  border-radius: 20px;

  background: #385723;

  color: #ffffff;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}


/* =========================================================
   CONTENIDO
========================================================= */

.publicacion-contenido {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding: 28px;
}


.publicacion-fecha {

  margin-bottom: 12px;

  color: #819079;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}


.publicacion-contenido h3 {

  margin: 0 0 13px;

  color: #385723;

  font-size: 22px;

  font-weight: 600;

  line-height: 1.25;
}


.publicacion-contenido p {

  margin: 0 0 22px;

  color: #687064;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   ENLACE
========================================================= */

.publicacion-enlace {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: auto;

  color: #385723;

  font-size: 12px;

  font-weight: 700;

  text-decoration: none;
}


.publicacion-enlace i {

  transition:
    transform .25s ease;
}


.publicacion-enlace:hover {

  color: #2d461c;
}


.publicacion-enlace:hover i {

  transform: translateX(4px);
}


/* =========================================================
   FACEBOOK
========================================================= */

.publicacion-facebook {

  position: relative;

  justify-content: center;

  min-height: 300px;

  background:
    linear-gradient(145deg,
      #385723,
      #2d461c);
}


.publicacion-facebook .publicacion-contenido {

  padding: 35px;

}


.publicacion-facebook .publicacion-fecha {

  color: rgba(255, 255, 255, .65);
}


.publicacion-facebook .publicacion-contenido h3 {

  color: #ffffff;
}


.publicacion-facebook .publicacion-contenido p {

  color: rgba(255, 255, 255, .8);
}


.publicacion-facebook .publicacion-enlace {

  color: #ffffff;
}


/* ICONO FACEBOOK */

.facebook-icono {

  position: absolute;

  top: 28px;

  right: 28px;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .12);

  color: #ffffff;

  font-size: 22px;
}


/* =========================================================
   COMUNICADO
========================================================= */

.publicacion-comunicado {

  justify-content: center;

  min-height: 300px;

  border:
    1px solid #dce5d8;

  background:
    linear-gradient(135deg,
      #ffffff,
      #f1f5ed);
}


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

@media (max-width: 1100px) {

  .contenedor-informacion {

    width: calc(100% - 50px);

  }


  .publicaciones-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .publicacion-destacada {

    grid-column: span 2;

  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 750px) {

  .informacion-fitosanitaria {

    padding: 70px 0;

  }


  .contenedor-informacion {

    width: calc(100% - 35px);

  }


  .informacion-header {

    align-items: flex-start;

  }


  .informacion-titulo h2 {

    font-size: 34px;

  }


  .informacion-decoracion {

    display: none;

  }


  .publicaciones-grid {

    grid-template-columns: 1fr;

  }


  .publicacion-destacada {

    grid-column: span 1;

    display: flex;

  }


  .publicacion-destacada .publicacion-imagen {

    min-height: 260px;

  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 500px) {

  .informacion-fitosanitaria {

    padding: 55px 0;

  }


  .contenedor-informacion {

    width: calc(100% - 25px);

  }


  .informacion-titulo h2 {

    font-size: 29px;

  }


  .informacion-titulo p {

    font-size: 13px;

  }


  .filtros-informacion {

    gap: 7px;

  }


  .filtro-info {

    padding: 8px 14px;

    font-size: 11px;

  }


  .publicacion-imagen {

    height: 210px;

  }


  .publicacion-contenido {

    padding: 23px;

  }


  .publicacion-contenido h3 {

    font-size: 20px;

  }

}

/*--------------------------------------------------------------
# Marco Legal
--------------------------------------------------------------*/

.marco-legal {
  position: relative;
  margin: 0;
  padding: 0;
}


/*--------------------------------------------------------------
# Barra de título
--------------------------------------------------------------*/

.marco-legal .page-title {
  background: #385723;
  color: #ffffff;
  padding: 20px 0;
}

.page-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-title h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.page-title .breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.page-title .breadcrumb a {
  color: #ffffff;
}

.page-title .breadcrumb span {
  color: #ffffff;
}


/*--------------------------------------------------------------
# Área principal
--------------------------------------------------------------*/

.marco-legal-content {
  position: relative;
  min-height: auto;
  padding: 60px 0 35px;
  overflow: hidden;
}

.marco-legal-content::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(255, 255, 255, 0.18) 100%),
    url("../img/banner-marcolegal.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;
}

.marco-legal-content>.container {
  position: relative;
  z-index: 2;
}


/* Líneas decorativas */

.marco-legal-content::after {
  content: "";
  position: absolute;

  width: 700px;
  height: 300px;

  right: -200px;
  top: 20px;

  border-radius: 50%;

  border: 1px solid rgba(56, 87, 35, 0.08);

  transform: rotate(-12deg);

  pointer-events: none;
}


/*--------------------------------------------------------------
# Introducción
--------------------------------------------------------------*/

.marco-intro {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 0;
  margin-bottom: 40px;
}

.marco-intro h2 {
  margin: 0;

  font-size: 46px;
  line-height: 1.2;

  font-weight: 700;

  color: #385723;
}

.marco-line {
  width: 60px;
  height: 3px;

  background: #385723;

  margin: 17px 0 22px;
}

.marco-intro p {
  margin: 0;

  font-size: 17px;
  line-height: 1.7;

  color: #444444;

  max-width: 570px;
}


/*--------------------------------------------------------------
# Documentos
--------------------------------------------------------------*/

.documentos-legales {
  position: relative;
  z-index: 3;
  width: calc(100% - 80px);
  margin: 0 auto;
}


.documento-legal {
  display: flex;
  align-items: center;

  background: #ffffff;

  border-radius: 12px;

  padding: 18px 28px;

  margin-bottom: 14px;

  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);

  border: 1px solid rgba(56, 87, 35, 0.04);

  transition: all 0.3s ease;
}


.documento-legal:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}


/*--------------------------------------------------------------
# Icono PDF
--------------------------------------------------------------*/

.pdf-icon {
  width: 42px;
  height: 52px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e92f35;

  color: #ffffff;

  border-radius: 5px;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 4px 10px rgba(233, 47, 53, 0.18);

  margin-right: 28px;
}


/*--------------------------------------------------------------
# Información
--------------------------------------------------------------*/

.documento-info {
  flex: 1;
}

.documento-info h3 {
  margin: 0 0 5px;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.4;

  color: #385723;
}

.documento-info span {
  font-size: 14px;

  color: #777777;
}


/*--------------------------------------------------------------
# Botón PDF
--------------------------------------------------------------*/

.btn-pdf {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-width: 125px;

  padding: 12px 18px;

  background: #385723;

  color: #ffffff;

  border-radius: 6px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s ease;
}

.btn-pdf:hover {
  background: #2D461C;

  color: #ffffff;

  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .page-title-content {
    padding: 0 20px;
  }

  .marco-legal-content {
    padding: 50px 20px 20px;
  }

  .marco-intro h2 {
    font-size: 40px;
  }

}


@media (max-width: 767px) {

  .page-title-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-title h1 {
    font-size: 21px;
  }

  .marco-intro {
    margin-bottom: 30px;
  }

  .marco-intro h2 {
    font-size: 34px;
  }

  .marco-intro p {
    font-size: 16px;
  }

  .documento-legal {
    flex-wrap: wrap;

    padding: 20px;

    gap: 15px;
  }

  .pdf-icon {
    margin-right: 5px;
  }

  .documento-info {
    flex: 1;
    min-width: 200px;
  }

  .documento-info h3 {
    font-size: 16px;
  }

  .btn-pdf {
    width: 100%;
    margin-top: 5px;
  }

}

/* =========================================================
   CONVOCATORIAS - GRUPOS DE TRABAJO
========================================================= */

.gt-convocatorias {
  width: 100%;
  margin: 0 0 75px;
}

.gt-convocatorias-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
}

.gt-convocatorias-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #edf3e9;
  color: #385723;
  font-size: 21px;
}

.gt-convocatorias-header h2 {
  margin: 0 0 5px;
  color: #385723;
  font-size: 30px;
  font-weight: 700;
}

.gt-convocatorias-header p {
  margin: 0;
  color: #687064;
  font-size: 14px;
}

/* CONVOCATORIA */
.modal-grupo-imagen {
  width: 100%;
  height: 190px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
}

.modal-grupo-imagen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gt-convocatoria {
  width: 100%;
  padding: 25px 28px;
  border: 1px solid #e1e7de;
  border-radius: 12px;
  background: #fff;
  transition: .3s ease;
}

.gt-convocatoria:hover {
  border-color: #cfdac9;
  box-shadow: 0 10px 30px rgba(56, 87, 35, .07);
}

.gt-convocatoria-contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.gt-convocatoria-principal {
  flex: 1;
  min-width: 0;
}

.gt-convocatoria-superior {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.gt-estado-abierta {
  color: #385723;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.gt-cierre {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #687064;
  font-size: 12px;
}

.gt-cierre i {
  color: #385723;
}

.gt-convocatoria-principal h3 {
  margin: 0 0 8px;
  color: #385723;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.gt-convocatoria-principal p {
  margin: 0 0 13px;
  color: #687064;
  font-size: 13px;
  line-height: 1.5;
}

.gt-grupo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7b8377;
  font-size: 11px;
}

.gt-grupo i {
  color: #385723;
}

/* INFORMACIÓN DERECHA */

.gt-convocatoria-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
}

.gt-publicacion {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 145px;
}

.gt-publicacion span {
  color: #8a9287;
  font-size: 11px;
}

.gt-publicacion strong {
  color: #385723;
  font-size: 13px;
  font-weight: 700;
}

.gt-ver-convocatoria {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  padding: 11px 16px;
  border: 1px solid #d6e0d1;
  border-radius: 7px;
  background: #fff;
  color: #385723;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.gt-ver-convocatoria:hover {
  border-color: #385723;
  background: #385723;
  color: #fff;
}

.gt-ver-convocatoria i {
  transition: transform .25s ease;
}

.gt-ver-convocatoria:hover i {
  transform: translateX(4px);
}

/* SIN CONVOCATORIAS */

.gt-sin-convocatorias {
  display: none;
  padding: 35px 15px;
  text-align: center;
}

.gt-sin-convocatorias>i {
  display: block;
  margin-bottom: 10px;
  color: #385723;
  font-size: 25px;
}

.gt-sin-convocatorias h3 {
  margin: 0 0 6px;
  color: #385723;
  font-size: 17px;
}

.gt-sin-convocatorias p {
  margin: 0;
  color: #7a8277;
  font-size: 12px;
}

/* =========================================================
   ENCABEZADO DE NUESTROS GRUPOS
========================================================= */

.gt-grupos {
  margin-top: 0;
}

.gt-grupos-header {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.gt-grupos-header h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 36px;
  font-weight: 700;
}

.gt-grupos-linea {
  width: 48px;
  height: 3px;
  margin: 0 auto 17px;
  background: #385723;
  border-radius: 10px;
}

.gt-grupos-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #687064;
  font-size: 14px;
  line-height: 1.7;
}

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

@media (max-width: 950px) {
  .gt-convocatoria-contenido {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .gt-convocatoria-meta {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .gt-convocatorias {
    margin-bottom: 55px;
  }

  .gt-convocatorias-header {
    gap: 11px;
    margin-bottom: 22px;
  }

  .gt-convocatorias-icono {
    width: 43px;
    height: 43px;
    font-size: 18px;
  }

  .gt-convocatorias-header h2 {
    font-size: 25px;
  }

  .gt-convocatorias-header p {
    font-size: 11px;
    line-height: 1.5;
  }

  .gt-convocatoria {
    padding: 21px 18px;
  }

  .gt-convocatoria-superior {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .gt-convocatoria-principal h3 {
    font-size: 17px;
  }

  .gt-convocatoria-principal p {
    font-size: 12px;
  }

  .gt-convocatoria-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .gt-ver-convocatoria {
    width: 100%;
  }

  .gt-grupos-header {
    margin-bottom: 35px;
  }

  .gt-grupos-header h2 {
    font-size: 29px;
  }

  .gt-grupos-header p {
    font-size: 13px;
  }
}

/* =======================================================
   GRUPOS DE TRABAJO
======================================================= */

.grupos-trabajo {
  position: relative;
  padding: 70px 0 90px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.94)),
    url("../img/fondo-grupos.jpg");

  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Contenedor */

.grupos-trabajo .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =======================================================
   TÍTULO
======================================================= */

.grupos-trabajo .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.grupos-trabajo .section-title h2 {
  margin: 0;
  color: #315d24;
  font-size: 2.6rem;
  font-weight: 700;
}


/* Decoración debajo del título */

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.title-decoration span {
  width: 60px;
  height: 2px;
  background: #315d24;
}

.title-decoration i {
  color: #315d24;
  font-size: 20px;
}


/* =======================================================
   GRID
======================================================= */

.grupos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* =======================================================
   TARJETAS
======================================================= */

.grupo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 22px;
  height: 480px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grupo-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.13);
}

.integrantes,
.grupo-info {
  flex: 1;

  overflow-y: auto;

  padding-right: 8px;
}

.integrantes::-webkit-scrollbar,
.grupo-info::-webkit-scrollbar {
  width: 6px;
}

.integrantes::-webkit-scrollbar-track,
.grupo-info::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.integrantes::-webkit-scrollbar-thumb,
.grupo-info::-webkit-scrollbar-thumb {
  background: #315d24;
  border-radius: 10px;
}

.integrantes::-webkit-scrollbar-thumb:hover,
.grupo-info::-webkit-scrollbar-thumb:hover {
  background: #24471b;
}

/* =======================================================
   ENCABEZADO
======================================================= */

.grupo-header {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* Icono */

.grupo-icon {
  flex-shrink: 0;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #315d24;

  color: #fff;

  font-size: 23px;
}


/* Texto pequeño */

.grupo-label {
  display: block;

  color: #777;

  font-size: 14px;

  margin-bottom: 5px;
}


/* Nombre */

.grupo-card h3 {
  margin: 0;

  color: #315d24;

  font-size: 24px;

  line-height: 1.2;

  font-weight: 700;
}


/* =======================================================
   LÍNEA
======================================================= */

.grupo-linea {
  width: 48px;
  height: 3px;

  background: #d4a900;

  margin: 20px 0 15px;
}


/* =======================================================
   INFORMACIÓN
======================================================= */

.grupo-info h4 {
  margin: 10px 0 7px;

  color: #315d24;

  font-size: 15px;

  font-weight: 700;
}

.grupo-info p,
.integrantes p {
  display: flex;
  align-items: flex-start;

  margin: 7px 0;

  color: #4d4d4d;

  font-size: 15px;

  line-height: 1.4;
}

.grupo-info p i,
.integrantes p i {
  flex-shrink: 0;

  margin-right: 9px;

  color: #315d24;

  font-size: 14px;
}


/* =======================================================
   BOTÓN DOCUMENTOS
======================================================= */
/* ================================
   ACCIONES DEL GRUPO
================================ */
.grupo-acciones {
    margin-top:28px;
    padding-top:18px;
    border-top:1px solid #e7ece4;
}


/* ================================
   SABER MÁS
================================ */

.grupo-acciones .boton-saber-mas {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    min-height:38px;
    padding:8px 12px;
    margin:0;
    border:1px solid #315d24;
    border-radius:7px;
    background:#fff;
    color:#315d24;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
}

.grupo-acciones .boton-saber-mas i:last-child {
    font-size:17px;
    transition:transform .3s ease;
}

.grupo-acciones .boton-saber-mas:hover {
    background:#315d24;
    color:#fff;
}

.grupo-acciones .boton-saber-mas:hover i:last-child {
    transform:translateX(5px);
}


/* DOCUMENTOS */

.grupo-documentos {
    margin-top:9px;
}

.grupo-documentos-boton {
    position:relative;
    width:100%;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:9px 13px;
    border:0;
    border-radius:8px;
    background:#f5f7f3;
    color:#385723;
    font-family:inherit;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:all .25s ease;
}

.grupo-documentos-boton span {
    display:flex;
    align-items:center;
    gap:8px;
}

.grupo-documentos-boton > i {
    position:absolute;
    right:13px;
}

.grupo-documentos-boton > i {
    font-size:13px;
    transition:transform .25s ease;
}

.grupo-documentos-boton:hover {
    background:#edf3e9;
}

.grupo-documentos-boton.abierto > i {
    transform:rotate(180deg);
}


/* LISTA DE DOCUMENTOS */

.grupo-documentos-lista {
    display:none;
    padding:5px 8px 0;
}

.grupo-documentos-lista.abierto {
    display:block;
}

.grupo-documentos-lista a {
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 5px;
    color:#596158;
    font-size:12px;
    line-height:1.3;
    text-decoration:none;
    border-bottom:1px solid #edf0eb;
}

.grupo-documentos-lista a:last-child {
    border-bottom:0;
}

.grupo-documentos-lista a:hover {
    color:#385723;
}

.grupo-documentos-lista a i {
    color:#385723;
    font-size:14px;
}
.btn-documentos {
    margin-top:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    min-height:38px;
    padding:8px 12px;
    border:1px solid #315d24;
    border-radius:7px;
    background:#fff;
    color:#315d24;
    font-family:inherit;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    transition:all .3s ease;
}

.btn-documentos span {
    color:inherit;
}

.btn-documentos i:last-child {
    font-size:17px;
    transition:transform .3s ease;
}

.btn-documentos:hover {
    background:#315d24;
    color:#fff;
}

.btn-documentos:hover i:last-child {
    transform:translateX(5px);
}

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

@media (max-width: 991px) {

  .grupos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .grupos-trabajo {
    padding: 50px 0 60px;
  }

  .grupos-trabajo .section-title h2 {
    font-size: 2rem;
  }

  .grupos-grid {
    grid-template-columns: 1fr;
  }

  .grupo-card h3 {
    font-size: 21px;
  }

}

/* =========================================================
   MODAL - GRUPOS DE TRABAJO
========================================================= */

.modal-grupo {

  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 25px;

  background:
    rgba(18, 35, 15, .62);

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease;

}


.modal-grupo.activo {

  opacity: 1;

  visibility: visible;

}


/* =========================================================
   VENTANA
========================================================= */

.modal-grupo-contenido {

  position: relative;

  width: 100%;

  max-width: 850px;

  max-height: 90vh;

  overflow-y: auto;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .25);

  transform:
    translateY(25px) scale(.97);

  transition:
    transform .3s ease;

}


.modal-grupo.activo .modal-grupo-contenido {

  transform:
    translateY(0) scale(1);

}


/* =========================================================
   BOTÓN CERRAR
========================================================= */

.modal-grupo-cerrar {

  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 3;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .15);

  color: #ffffff;

  font-size: 14px;

  cursor: pointer;

  transition:
    all .25s ease;

}


.modal-grupo-cerrar:hover {

  background: #ffffff;

  color: #385723;

  transform:
    rotate(90deg);

}


/* =========================================================
   ENCABEZADO
========================================================= */

.modal-grupo-header {

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 32px 55px;

  background: #385723;

  color: #ffffff;

}


.modal-grupo-icono {

  width: 55px;
  height: 55px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .14);

  color: #ffffff;

  font-size: 21px;

}


.modal-grupo-header span {

  display: block;

  margin-bottom: 5px;

  color:
    rgba(255, 255, 255, .72);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

}


.modal-grupo-header h2 {

  margin: 0;

  padding-right: 35px;

  color: #ffffff !important;

  font-size: 28px;

  line-height: 1.25;

}


/* =========================================================
   CUERPO
========================================================= */

.modal-grupo-body {

  padding: 38px 55px 45px;

}


.modal-grupo-body h3 {

  display: flex;

  align-items: center;

  gap: 9px;

  margin: 0 0 14px;

  color: #385723;

  font-size: 17px;

}


.modal-grupo-body h3 i {

  font-size: 18px;

}


.modal-grupo-body>p {

  margin: 0;

  color: #626c60;

  font-size: 15px;

  line-height: 1.8;

}


/* =========================================================
   DATOS
========================================================= */

.modal-grupo-dato {

  margin-top: 30px;

  padding-top: 25px;

  border-top:
    1px solid #e7ece4;

}


.modal-grupo-dato-titulo {

  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 12px;

  color: #385723;

  font-size: 14px;

  font-weight: 700;

}


.modal-grupo-dato p {

  margin: 0;

  color: #626c60;

  font-size: 14px;

  line-height: 1.6;

}


/* =========================================================
   INTEGRANTES
========================================================= */

#modalGrupoIntegrantes {

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 8px 30px;

}


#modalGrupoIntegrantes p {

  margin: 0;

  color: #626c60;

  font-size: 13px;

  line-height: 1.5;

}


#modalGrupoIntegrantes p i {

  margin-right: 6px;

  color: #7a9668;

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 700px) {

  .modal-grupo {

    padding: 12px;

    align-items: center;

  }


  .modal-grupo-contenido {

    max-height: 94vh;

    border-radius: 15px;

  }


  .modal-grupo-header {

    padding: 27px 25px;

    padding-right: 60px;

    gap: 13px;

  }


  .modal-grupo-icono {

    width: 45px;
    height: 45px;

    font-size: 17px;

  }


  .modal-grupo-header h2 {

    font-size: 21px;

  }


  .modal-grupo-body {

    padding: 28px 25px 35px;

  }


  #modalGrupoIntegrantes {

    grid-template-columns: 1fr;

    gap: 7px;

  }


  .modal-grupo-cerrar {

    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #555555;
  background-color: #ffffff;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 55px 0 40px 0;
  border-top: 1px solid #e5e8e2;
}

.footer .footer-brand {
  margin-bottom: 28px;
}

.footer .footer-brand span {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #385723;
  font-family: var(--heading-font);
}

.footer .footer-brand small {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: #555555;
}

.footer .footer-contact {
  padding-bottom: 18px;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer .footer-contact .contact-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background-color: #385723;
  color: #ffffff;
  font-size: 12px;
}

.footer .footer-contact strong {
  color: #385723;
}

.footer .footer-social {
  border-top: 1px solid #e5e8e2;
  padding-top: 16px;
  margin-top: 5px;
}

.footer .footer-social h4 {
  margin-bottom: 14px;
  font-size: 14px;
  color: #385723;
  font-weight: 700;
}

.footer .social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #9aa593;
  color: #385723;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  color: #ffffff;
  background-color: #385723;
  border-color: #385723;
  transform: translateY(-2px);
}

.footer .footer-links {
  padding-left: 25px;
}

.footer .footer-links h4,
.footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: 700;
  color: #385723;
  margin-bottom: 22px;
  position: relative;
}

.footer .footer-links h4::after,
.footer .footer-newsletter h4::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 9px;
  background-color: #385723;
  border-radius: 2px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 0;
  margin-bottom: 13px;
}

.footer .footer-links ul li a {
  display: flex;
  align-items: center;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-links ul li a i {
  color: #385723;
  font-size: 11px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: #385723;
  padding-left: 4px;
}

.footer .footer-links ul li a:hover i {
  transform: translateX(3px);
}

.footer .footer-newsletter {
  padding-left: 15px;
}

.footer .footer-newsletter>p {
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer .horario-box {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  padding: 16px 20px;
  margin-top: 18px;
  background-color: #f5f7f2;
  border-radius: 10px;
}

.footer .horario-box>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 2px solid #385723;
  border-radius: 50%;
  color: #385723;
  font-size: 19px;
}

.footer .horario-box strong {
  display: block;
  margin-bottom: 4px;
  color: #222222;
  font-size: 14px;
}

.footer .horario-box span {
  color: #555555;
  font-size: 13px;
}

.footer .btn-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 400px;
  margin-top: 30px;
  padding: 13px 22px;
  background-color: #385723;
  color: #ffffff;
  border-radius: 7px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 5px 12px rgba(56, 87, 35, 0.18);
  transition: all 0.3s ease;
}

.footer .btn-contacto i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.footer .btn-contacto:hover {
  background-color: #2D461C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(56, 87, 35, 0.25);
}

.footer .btn-contacto:hover i {
  transform: translateX(5px);
}

.footer .copyright {
  padding: 20px 0;
  border-top: 1px solid #e5e8e2;
  text-align: center;
}

.footer .copyright p {
  margin: 0;
  font-size: 13px;
  color: #555555;
}

.footer .copyright strong {
  color: #385723;
  margin-left: 4px;
}

@media (max-width: 991px) {
  .footer .footer-top {
    padding: 45px 0 30px 0;
  }

  .footer .footer-links {
    padding-left: 10px;
  }

  .footer .footer-newsletter {
    padding-left: 10px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top {
    padding: 40px 0 25px 0;
  }

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-newsletter {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 25px;
  }

  .footer .footer-brand span {
    font-size: 27px;
  }

  .footer .footer-links {
    border-top: 1px solid #e5e8e2;
    padding-top: 20px;
  }

  .footer .footer-newsletter {
    border-top: 1px solid #e5e8e2;
    padding-top: 20px;
  }

  .footer .horario-box,
  .footer .btn-contacto {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer .footer-top {
    padding: 35px 0 20px 0;
  }

  .footer .footer-brand span {
    font-size: 25px;
  }

  .footer .footer-brand small {
    font-size: 12px;
  }

  .footer .footer-social {
    margin-top: 10px;
  }

  .footer .copyright {
    padding: 17px 0;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}


/*--------------------------------------------------------------
# Imagen
--------------------------------------------------------------*/

.hero img {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
}


/*--------------------------------------------------------------
# Carousel Item
--------------------------------------------------------------*/

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Degradado sobre la imagen
--------------------------------------------------------------*/

.hero .carousel-item::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(20, 45, 20, 0.88) 0%,
      rgba(20, 45, 20, 0.70) 28%,
      rgba(20, 45, 20, 0.35) 55%,
      rgba(20, 45, 20, 0.05) 100%);

  z-index: 2;
}


/*--------------------------------------------------------------
# Contenedor
--------------------------------------------------------------*/

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  background: transparent;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 0;
}

/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/
.hero .container>* {
  max-width: 700px;
}

/*--------------------------------------------------------------
# Título
--------------------------------------------------------------*/

.hero h2 {
  margin: 0 0 20px 0;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
  max-width: 700px;
}

/*--------------------------------------------------------------
# Texto
--------------------------------------------------------------*/

.hero p {
  max-width: 650px;
  margin: 0 0 30px 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/*--------------------------------------------------------------
# Botón
--------------------------------------------------------------*/

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 13px 24px;
  margin: 0;
  border-radius: 6px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

/* Flecha del botón */

.hero .btn-get-started::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover */

.hero .btn-get-started:hover {
  background: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}


.hero .btn-get-started:hover::after {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Flecha anterior
--------------------------------------------------------------*/

.hero .carousel-control-prev {
  justify-content: flex-start;
  padding-left: 25px;
  z-index: 4;
}

/*--------------------------------------------------------------
# Flecha siguiente
--------------------------------------------------------------*/

.hero .carousel-control-next {
  justify-content: flex-end;
  padding-right: 25px;
  z-index: 4;
}

/*--------------------------------------------------------------
# Botones de navegación
--------------------------------------------------------------*/

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: #ffffff;
  background-image: none;
  color: var(--accent-color);
  font-size: 20px;
  line-height: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.85;
}


.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.85;
}


.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
}


.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Indicadores
--------------------------------------------------------------*/

.hero .carousel-indicators {
  z-index: 4;
  bottom: 25px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* Bootstrap 5 usa button */

.hero .carousel-indicators button {
  cursor: pointer;
  background: #ffffff;
  overflow: hidden;
  border: 0;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  border-radius: 50px;
  opacity: 0.65;
  transition: all 0.3s ease;
}


.hero .carousel-indicators button.active {
  width: 25px;
  opacity: 1;
  background: var(--accent-color);
  border-radius: 50px;
}

/* Compatibilidad con versiones anteriores */

.hero .carousel-indicators li {
  cursor: pointer;

  background: #ffffff;

  overflow: hidden;

  border: 0;

  width: 8px;
  height: 8px;

  border-radius: 50px;

  opacity: 0.65;

  transition: all 0.3s ease;
}


.hero .carousel-indicators li.active {
  width: 25px;
  opacity: 1;
  background: var(--accent-color);
}


/*--------------------------------------------------------------
# Pantallas grandes
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  .hero .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h2 {
    font-size: 62px;
  }

}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 1200px) {

  .hero .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero h2 {
    font-size: 48px;
  }

}


/*--------------------------------------------------------------
# Móvil
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .hero .carousel {
    min-height: 600px;
  }

  .hero .carousel-item {
    align-items: center;
  }

  .hero .carousel-item::after {
    background:
      linear-gradient(90deg,
        rgba(20, 45, 20, 0.82) 0%,
        rgba(20, 45, 20, 0.55) 100%);
  }

  .hero .container {
    padding-left: 45px;
    padding-right: 45px;
  }

  .hero .container::before {
    font-size: 10px;
    padding: 6px 13px;
    margin-bottom: 14px;
  }

  .hero h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .hero .btn-get-started {
    font-size: 13px;
    padding: 11px 20px;
  }

}


/*--------------------------------------------------------------
# Móvil pequeño
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .hero .carousel {
    min-height: 560px;
  }

  .hero .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .carousel-control-prev {
    padding-left: 10px;
  }

  .hero .carousel-control-next {
    padding-right: 10px;
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

  .hero .carousel-indicators {
    bottom: 18px;
  }

}

/*==============================================================
# GALERÍA
==============================================================*/

.galeria-section {
  padding: 80px 0;
  background: #ffffff;
}


/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/

.galeria-header {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}


.galeria-tag {
  display: inline-block;

  margin-bottom: 12px;

  color: #385723;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
}


.galeria-header h2 {
  margin: 0 0 15px;

  color: #385723;

  font-size: 42px;
  font-weight: 700;
}


.galeria-linea {
  width: 70px;
  height: 3px;

  margin: 0 auto 20px;

  background: #385723;

  border-radius: 20px;
}


.galeria-header p {
  max-width: 750px;

  margin: 0 auto;

  color: #666;

  font-size: 16px;
  line-height: 1.7;
}


/*--------------------------------------------------------------
# Álbumes
==============================================================*/

.albumes {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/*--------------------------------------------------------------
# Tarjeta
==============================================================*/

.album-card {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.08);

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}


.album-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 20px 45px rgba(56, 87, 35, 0.15);
}


/*--------------------------------------------------------------
# Forma de carpeta
==============================================================*/

.folder-tab {
  position: absolute;
  top: 0;
  left: 20px;
  width: 95px;
  height: 21px;
  background: #385723;
  border-radius: 0 0 9px 9px;
  z-index: 5;
}


/*--------------------------------------------------------------
# Imagen
==============================================================*/

.album-imagen {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f2f4ef;
}


.album-imagen img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .6s ease;
}


.album-card:hover .album-imagen img {
  transform:
    scale(1.06);
}


/*--------------------------------------------------------------
# Overlay
==============================================================*/

.album-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(56, 87, 35, 0.72);

  opacity: 0;

  transition:
    opacity .35s ease;
}


.album-card:hover .album-overlay {
  opacity: 1;
}


.album-overlay span {
  padding:
    12px 22px;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  border:
    1px solid rgba(255, 255, 255, .8);

  border-radius: 30px;
}


/*--------------------------------------------------------------
# Información
==============================================================*/

.album-info {
  position: relative;
  padding: 24px 25px 26px;
}


.album-icon {
  position: absolute;

  top: -24px;
  right: 25px;

  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #385723;

  color: #ffffff;

  font-size: 20px;

  box-shadow:
    0 7px 18px rgba(56, 87, 35, .20);
}


.album-info h3 {
  margin: 0 0 7px;
  color: #385723;
  font-size: 20px;
  font-weight: 700;
}


.album-info p {
  margin:
    0 0 17px;

  color: #777;

  font-size: 14px;
}


/*--------------------------------------------------------------
# Enlace
==============================================================*/

.album-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #385723;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  cursor: pointer;

  transition:
    gap .3s ease,
    color .3s ease;
}


.album-link:hover {
  gap: 13px;

  color: #2D461C;
}


/*--------------------------------------------------------------
# Vista del álbum
==============================================================*/

#vista-album {
  display: none;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  padding: 0 25px;
}


#vista-album.mostrar {
  display: block;

  animation:
    aparecerAlbum .5s ease;
}


@keyframes aparecerAlbum {

  from {
    opacity: 0;

    transform:
      translateY(20px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


/*--------------------------------------------------------------
# Encabezado del álbum
==============================================================*/

.album-vista-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 35px;

  padding-bottom: 20px;

  border-bottom:
    1px solid #e6e6e6;
}


.album-vista-titulo h3 {
  margin:
    0 0 7px;

  color: #385723;

  font-size: 32px;
}


.album-vista-titulo p {
  margin: 0;

  color: #777;
}


/*--------------------------------------------------------------
# Volver
==============================================================*/

.btn-volver-albumes {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding:
    11px 18px;

  color: #385723;

  background: #ffffff;

  border:
    1.5px solid #385723;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    all .3s ease;
}


.btn-volver-albumes:hover {
  color: #ffffff;

  background: #385723;
}


/*--------------------------------------------------------------
# Fotografías
==============================================================*/

.fotos-album {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.foto-item {
  position: relative;

  height: 220px;

  overflow: hidden;

  background: #f2f4ef;

  border-radius: 14px;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, .08);

  cursor: pointer;
}


.foto-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}


.foto-item:hover img {
  transform:
    scale(1.08);
}


/*--------------------------------------------------------------
# Overlay fotografías
==============================================================*/

.foto-item::after {
  content:
    "Ver fotografía";

  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  background:
    rgba(56, 87, 35, .65);

  font-weight: 600;

  opacity: 0;

  transition:
    opacity .3s ease;
}


.foto-item:hover::after {
  opacity: 1;
}


/*--------------------------------------------------------------
# Tablet
==============================================================*/

@media (max-width: 900px) {

  .albumes {
    grid-template-columns:
      1fr;
  }


  .fotos-album {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/*--------------------------------------------------------------
# Móvil
==============================================================*/

@media (max-width: 575px) {

  .galeria-section {
    padding:
      55px 0;
  }


  .galeria-header h2 {
    font-size: 34px;
  }


  .albumes {
    padding:
      0 15px;
  }


  .album-imagen {
    height: 240px;
  }


  #vista-album {
    padding:
      0 15px;
  }


  .album-vista-header {
    flex-direction: column;

    align-items: flex-start;
  }


  .album-vista-titulo h3 {
    font-size: 26px;
  }


  .fotos-album {
    grid-template-columns:
      1fr;
  }


  .foto-item {
    height: 250px;
  }

}

/*==============================================================
# CHAT DE CONTACTO
==============================================================*/

.chat-contacto {

  position: fixed;

  left: 28px;
  bottom: 28px;

  z-index: 9999;

  display: flex;
  align-items: center;

  gap: 0;

  width: auto;
  height: 60px;

  color: #ffffff;

  text-decoration: none;

  cursor: pointer;

}


/*==============================================================
# ICONO
==============================================================*/

.chat-icono {

  width: 60px;
  height: 60px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #385723;

  color: #ffffff;

  border-radius: 50%;

  font-size: 23px;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, .20);

  z-index: 2;

  transition:
    transform .3s ease,
    background .3s ease;

}


/*==============================================================
# TEXTO
==============================================================*/

.chat-texto {

  display: flex;

  flex-direction: column;
  justify-content: center;

  width: 0;

  min-width: 0;

  height: 60px;

  padding: 0;

  overflow: hidden;

  background: #385723;

  border-radius:
    0 12px 12px 0;

  opacity: 0;

  transform: translateX(-10px);

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, .16);

  transition:
    width .35s ease,
    padding .35s ease,
    opacity .25s ease,
    transform .35s ease;

}


/*==============================================================
# TEXTO AL PASAR EL MOUSE
==============================================================*/

.chat-contacto:hover .chat-texto {

  width: 190px;

  padding:
    0 17px;

  opacity: 1;

  transform:
    translateX(0);

}


/*==============================================================
# TÍTULO
==============================================================*/

.chat-texto strong {

  display: block;

  margin: 0;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.3;

}


/*==============================================================
# SUBTEXTO
==============================================================*/

.chat-texto small {

  display: block;

  margin-top: 3px;

  color:
    rgba(255, 255, 255, .85);

  font-size: 11px;

  line-height: 1.3;

}


/*==============================================================
# HOVER DEL ICONO
==============================================================*/

.chat-contacto:hover .chat-icono {

  background: #2D461C;

  transform:
    scale(1.06);

}


/*==============================================================
# ANIMACIÓN DEL ICONO
==============================================================*/

.chat-icono {

  animation:
    chatFlotante 3s ease-in-out infinite;

}


@keyframes chatFlotante {

  0%,
  100% {

    transform:
      translateY(0);

  }

  50% {

    transform:
      translateY(-5px);

  }

}


/*==============================================================
# MÓVIL
==============================================================*/

@media (max-width: 575px) {

  .chat-contacto {

    left: 18px;

    bottom: 18px;

    height: 52px;

  }


  .chat-icono {

    width: 52px;
    height: 52px;

    font-size: 20px;

  }


  .chat-contacto:hover .chat-texto {

    width: 155px;

    padding:
      0 13px;

  }


  .chat-texto {

    height: 52px;

  }


  .chat-texto strong {

    font-size: 12px;

  }


  .chat-texto small {

    font-size: 10px;

  }

}


/*==============================================================
# Actualidad Fitosanitaria
==============================================================*/

.actualidad {

  position: relative;

  padding: 90px 0 100px;

  background: #f8faf5;

  overflow: hidden;

}


/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/

.actualidad-header {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 45px;

}


.actualidad-titulo {

  max-width: 750px;

}


.actualidad-etiqueta {

  display: inline-block;

  margin-bottom: 12px;

  color: #63864a;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

}


.actualidad-titulo h2 {

  margin: 0 0 12px;

  color: #385723;

  font-size: 44px;

  line-height: 1.15;

  font-weight: 700;

}


.actualidad-titulo p {

  margin: 0;

  color: #687267;

  font-size: 16px;

  line-height: 1.7;

}


/*--------------------------------------------------------------
# Ver todas
--------------------------------------------------------------*/

.actualidad-ver-todas {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding-bottom: 5px;

  color: #385723;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;

  transition: all .3s ease;

}


.actualidad-ver-todas i {

  font-size: 17px;

  transition: transform .3s ease;

}


.actualidad-ver-todas:hover {

  color: #2D461C;

}


.actualidad-ver-todas:hover i {

  transform: translateX(5px);

}


/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/

.actualidad-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 26px;

}


/*--------------------------------------------------------------
# Tarjeta
--------------------------------------------------------------*/

.noticia-card {

  background: #ffffff;

  border-radius: 14px;

  overflow: hidden;

  border: 1px solid rgba(56, 87, 35, .08);

  box-shadow:
    0 8px 30px rgba(30, 50, 25, .07);

  transition:
    transform .35s ease,
    box-shadow .35s ease;

}


.noticia-card:hover {

  transform:
    translateY(-7px);

  box-shadow:
    0 18px 40px rgba(30, 50, 25, .13);

}


/*--------------------------------------------------------------
# Imagen
--------------------------------------------------------------*/

.noticia-imagen {

  position: relative;

  height: 245px;

  overflow: hidden;

}


.noticia-imagen img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform .6s ease;

}


.noticia-card:hover .noticia-imagen img {

  transform:
    scale(1.05);

}


/*--------------------------------------------------------------
# Fecha
--------------------------------------------------------------*/

.noticia-fecha {

  position: absolute;

  top: 18px;

  right: 18px;

  width: 58px;

  min-height: 72px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 7px 5px;

  background: #385723;

  color: #ffffff;

  border-radius: 9px;

  text-align: center;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.1;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, .15);

}


.noticia-fecha strong {

  display: block;

  margin-bottom: 2px;

  font-size: 23px;

  line-height: 1;

}


.noticia-fecha small {

  display: block;

  margin-top: 3px;

  font-size: 9px;

  opacity: .85;

}


/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/

.noticia-contenido {

  display: flex;

  flex-direction: column;

  min-height: 330px;

  padding: 28px 28px 25px;

}


/*--------------------------------------------------------------
# Categoría
--------------------------------------------------------------*/

.noticia-categoria {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 16px;

  color: #63864a;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .7px;

}


.noticia-categoria i {

  font-size: 17px;

}


/*--------------------------------------------------------------
# Título
--------------------------------------------------------------*/

.noticia-contenido h3 {

  margin: 0 0 16px;

  color: #183114;

  font-size: 21px;

  line-height: 1.3;

  font-weight: 700;

}


/*--------------------------------------------------------------
# Descripción
--------------------------------------------------------------*/

.noticia-contenido p {

  margin: 0;

  color: #687267;

  font-size: 14px;

  line-height: 1.7;

}


/*--------------------------------------------------------------
# Leer más
--------------------------------------------------------------*/

.noticia-leer {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  width: fit-content;

  margin-top: auto;

  padding-top: 22px;

  color: #385723;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  border-top:
    1px solid rgba(56, 87, 35, .10);

}


.noticia-leer i {

  font-size: 17px;

  transition:
    transform .3s ease;

}


.noticia-leer:hover {

  color: #2D461C;

}


.noticia-leer:hover i {

  transform:
    translateX(5px);

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.actualidad-footer {

  display: flex;

  justify-content: center;

  margin-top: 45px;

}


.actualidad-boton {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 13px 23px;

  color: #385723;

  background: transparent;

  border: 1px solid rgba(56, 87, 35, .45);

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition:
    all .3s ease;

}


.actualidad-boton i:last-child {

  transition:
    transform .3s ease;

}


.actualidad-boton:hover {

  color: #ffffff;

  background: #385723;

  border-color: #385723;

}


.actualidad-boton:hover i:last-child {

  transform:
    translateX(5px);

}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .actualidad {

    padding:
      75px 0 80px;

  }


  .actualidad-header {

    align-items: flex-start;

    flex-direction: column;

    gap: 20px;

  }


  .actualidad-titulo h2 {

    font-size: 38px;

  }


  .actualidad-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .noticia-card:last-child {

    grid-column:
      1 / -1;

    max-width:
      calc(50% - 13px);

    margin: 0 auto;

  }

}


/*--------------------------------------------------------------
# Móvil
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .actualidad {

    padding:
      65px 0 70px;

  }


  .actualidad-titulo h2 {

    font-size: 34px;

  }


  .actualidad-grid {

    grid-template-columns:
      1fr;

    gap: 22px;

  }


  .noticia-card:last-child {

    grid-column: auto;

    max-width: none;

  }


  .noticia-imagen {

    height: 220px;

  }


  .noticia-contenido {

    min-height: 300px;

  }

}


/*--------------------------------------------------------------
# Móvil pequeño
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .actualidad-titulo h2 {

    font-size: 30px;

  }


  .actualidad-titulo p {

    font-size: 14px;

  }


  .actualidad-ver-todas {

    font-size: 13px;

  }


  .noticia-imagen {

    height: 205px;

  }


  .noticia-contenido {

    padding:
      24px 22px;

  }

}

/*--------------------------------------------------------------
# Junta Directiva
--------------------------------------------------------------*/

.junta-directiva {
  padding: 80px 0;
  background: #ffffff;
}

.directiva-boton {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.directiva-boton a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 30px;
  background: #385723;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
}

.directiva-boton a:hover {
  background: #2d461c;
  color: #ffffff;
  transform: translateY(-2px);
}

.directiva-boton a i {
  transition: transform .3s ease;
}

.directiva-boton a:hover i {
  transform: translateX(5px);
}

.jd-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 15, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

.jd-modal.activo {
  opacity: 1;
  visibility: visible;
}

.jd-modal-contenido {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .2);
}

.jd-modal-contenido img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.jd-modal-cerrar {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: #385723;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/

.junta-titulo {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.junta-titulo h2 {
  color: #385723;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.junta-linea {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}

.junta-linea::before,
.junta-linea::after {
  content: "";
  width: 55px;
  height: 2px;
  background: #385723;
}

.junta-linea span {
  width: 7px;
  height: 7px;
  background: #385723;
  border-radius: 50%;
}

.junta-titulo p {
  margin: 0;
  color: #666666;
  font-size: 17px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Presentación
--------------------------------------------------------------*/

.junta-presentacion {
  max-width: 1000px;
  margin: 0 auto 55px;
  padding: 35px 45px;
  background: #f7f8f6;
  border-left: 4px solid #385723;
  border-radius: 8px;
}

.junta-fecha {
  display: block;
  margin-bottom: 12px;

  color: #385723;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

.junta-presentacion h3 {
  color: #385723;

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 15px;
}

.junta-presentacion p {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}
/* =========================================
   REPRESENTANTES INSTITUCIONALES
========================================= */

.jd-representantes {
    width:100%;
    margin-top:65px;
    padding:20px 0 40px;
}

.jd-representantes-titulo {
    max-width:850px;
    margin:0 auto 45px;
    text-align:center;
}

.jd-representantes-titulo h2 {
    margin:0 0 10px;
    color:#385723;
    font-size:32px;
    line-height:1.2;
    font-weight:700;
}

.jd-representantes-titulo p {
    margin:0;
    color:#6f776b;
    font-size:15px;
    line-height:1.5;
}


/* CONTENEDOR */

.jd-representantes-contenedor {
    position:relative;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
    max-width:1200px;
    margin:0 auto;
    padding:15px 10px 0;
}

.jd-representantes-contenedor::before {
    content:"";
    position:absolute;
    top:87px;
    left:8%;
    right:8%;
    height:3px;
    background:#385723;
    opacity:.20;
}

.jd-representante {
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.jd-representante-circulo {
    width:140px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #385723;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 16px rgba(56,87,35,.08);
}

.jd-representante-circulo img {
    width:75%;
    height:75%;
    object-fit:contain;
}

.jd-representante-info {
    width:100%;
    max-width:220px;
    margin-top:14px;
    text-align:center;
}

.jd-representante-info h3 {
    margin:0;
    color:#385723;
    font-size:18px;
    line-height:1.3;
    font-weight:700;
}

.jd-representante-info strong {
    display:block;
    margin-top:7px;
    color:#333;
    font-size:15px;
    line-height:1.4;
    font-weight:600;
}


/* LÍNEA */

.jd-representantes-contenedor::before {
    content:"";
    position:absolute;
    top:87px;
    left:8%;
    right:8%;
    height:3px;
    background:#385723;
    opacity:.20;
}


/* ELEMENTO */

.jd-representante {
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}


/* CÍRCULO */

.jd-representante-circulo {
    width:145px;
    height:145px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #385723;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 16px rgba(56,87,35,.08);
}

.jd-representante-circulo img {
    width:75%;
    height:75%;
    object-fit:contain;
}


/* INFORMACIÓN */

.jd-representante-info {
    width:100%;
    max-width:240px;
    margin-top:15px;
    text-align:center;
}

.jd-representante-info h3 {
    margin:0 0 5px;
    color:#385723;
    font-size:18px;
    line-height:1.25;
    font-weight:700;
}

.jd-representante-info strong {
    display:block;
    margin:0;
    color:#333;
    font-size:15px;
    line-height:1.35;
    font-weight:600;
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width:1050px) {

    .jd-representantes-contenedor {
        grid-template-columns:repeat(3,1fr);
        row-gap:45px;
    }

    .jd-representantes-contenedor::before {
        display:none;
    }
}

@media (max-width:700px) {

    .jd-representantes-contenedor {
        grid-template-columns:repeat(2,1fr);
        gap:40px 20px;
    }

    .jd-representante-circulo {
        width:125px;
        height:125px;
    }

    .jd-representante-info h3 {
        font-size:17px;
    }

    .jd-representante-info strong {
        font-size:14px;
    }
}

@media (max-width:480px) {

    .jd-representantes-contenedor {
        grid-template-columns:1fr;
        gap:40px;
    }

    .jd-representante-circulo {
        width:130px;
        height:130px;
    }
}

/* =========================================================
   PÁGINA JUNTA DIRECTIVA
   Clases exclusivas - NO afectan al INDEX
========================================================= */

.jd-pagina {
  width: 100%;
  padding: 90px 0;
  background: transparent;
}

.jd-pagina-contenedor {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

/* =========================================================
   ENCABEZADO JUNTA DIRECTIVA
========================================================= */

.jd-pagina-titulo {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.jd-pagina-titulo h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.jd-pagina-linea {
  width: 55px;
  height: 3px;
  margin: 0 auto 18px;
  background: #385723;
  border-radius: 10px;
}

.jd-pagina-titulo p {
  max-width: 720px;
  margin: 0 auto;
  color: #687064;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   DIRECTIVA
========================================================= */

.jd-pagina-directiva {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1050px;
  margin: 0 auto;
}

.jd-pagina-directivo {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  border: 1px solid #e3e9df;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.jd-pagina-directivo:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(56, 87, 35, .12);
}

.jd-pagina-acento {
  width: 100%;
  height: 5px;
  background: #385723;
}

.jd-pagina-foto {
  width: 150px;
  height: 150px;
  margin: 28px auto 20px;
  overflow: hidden;
  border: 5px solid #edf3e9;
  border-radius: 50%;
}

.jd-pagina-foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jd-pagina-directivo h3 {
  margin: 0 20px 8px;
  color: #385723;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.jd-pagina-cargo {
  display: block;
  color: #687064;
  font-size: 12px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/

.junta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  max-width: 1100px;
  margin: 0 auto 60px;
}


/*--------------------------------------------------------------
# Tarjetas
--------------------------------------------------------------*/

.directivo-card {
  position: relative;

  background: #ffffff;

  border: 1px solid #e5e9e2;
  border-radius: 14px;

  padding: 35px 25px 30px;

  text-align: center;

  box-shadow: 0 8px 25px rgba(56, 87, 35, 0.06);

  transition: all 0.3s ease;

  overflow: hidden;
}

.directivo-acento {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 55px;
  height: 3px;

  background: #385723;

  border-radius: 0 0 5px 5px;
}

.directivo-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(56, 87, 35, 0.12);

  border-color: #d8e2d2;
}


/*--------------------------------------------------------------
# Fotografías
--------------------------------------------------------------*/

.directivo-foto {
  width: 155px;
  height: 155px;

  margin: 0 auto 25px;

  border-radius: 50%;
  overflow: hidden;

  border: 5px solid #eef4ea;

  background: #eef4ea;
}

.directivo-foto img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/*--------------------------------------------------------------
# Nombres
--------------------------------------------------------------*/

.directivo-card h3 {
  color: #385723;

  font-size: 21px;
  font-weight: 600;

  line-height: 1.35;

  margin: 0 auto 15px;

  max-width: 260px;
}


/*--------------------------------------------------------------
# Cargo
--------------------------------------------------------------*/

.directivo-cargo {
  display: inline-block;

  color: #385723;
  background: #eef4ea;

  padding: 7px 16px;

  border-radius: 20px;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;
}


/*--------------------------------------------------------------
# Mensajes
--------------------------------------------------------------*/

.junta-mensajes {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  max-width: 1100px;

  margin: 0 auto;
}

.mensaje-directivo {
  padding: 35px;

  background: #ffffff;

  border: 1px solid #e5e9e2;

  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(56, 87, 35, 0.05);
}

.mensaje-directivo h3 {
  color: #385723;

  font-size: 21px;
  font-weight: 700;

  margin-bottom: 20px;
}

.mensaje-directivo p {
  color: #555555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.mensaje-directivo p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .junta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .junta-mensajes {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 767px) {

  .junta-directiva {
    padding: 60px 0;
  }

  .junta-titulo h2 {
    font-size: 30px;
  }

  .junta-titulo p {
    font-size: 16px;
  }

  .junta-presentacion {
    padding: 28px 25px;
  }

  .junta-presentacion h3 {
    font-size: 21px;
  }

  .junta-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .junta-mensajes {
    grid-template-columns: 1fr;
  }

  .mensaje-directivo {
    padding: 28px 22px;
  }

}

/* =========================================================
   PÁGINA JUNTA DIRECTIVA
   Clases exclusivas - NO afectan al INDEX
========================================================= */

.jd-pagina {
  width: 100%;
  padding: 90px 0;
  background: transparent;
}

.jd-pagina-contenedor {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

/* =========================================================
   ENCABEZADO JUNTA DIRECTIVA
========================================================= */

.jd-pagina-titulo {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.jd-pagina-titulo h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.jd-pagina-linea {
  width: 55px;
  height: 3px;
  margin: 0 auto 18px;
  background: #385723;
  border-radius: 10px;
}

.jd-pagina-titulo p {
  max-width: 720px;
  margin: 0 auto;
  color: #687064;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   DIRECTIVA
========================================================= */

.jd-pagina-directiva {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1050px;
  margin: 0 auto;
}

.jd-pagina-directivo {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  border: 1px solid #e3e9df;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.jd-pagina-directivo:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(56, 87, 35, .12);
}

.jd-pagina-acento {
  width: 100%;
  height: 5px;
  background: #385723;
}

.jd-pagina-foto {
  width: 150px;
  height: 150px;
  margin: 28px auto 20px;
  overflow: hidden;
  border: 5px solid #edf3e9;
  border-radius: 50%;
}

.jd-pagina-foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jd-pagina-directivo h3 {
  margin: 0 20px 8px;
  color: #385723;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.jd-pagina-cargo {
  display: block;
  color: #687064;
  font-size: 12px;
  font-weight: 600;
}

/* =========================================================
   REPRESENTANTES INSTITUCIONALES
========================================================= */

.jd-pagina-representantes {
  width: 100%;
  max-width: 950px;
  margin: 85px auto 0;
}

.jd-pagina-representantes-titulo {
  max-width: 750px;
  margin: 0 auto 35px;
  text-align: center;
}

.jd-pagina-representantes-titulo h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.jd-pagina-representantes-linea {
  width: 50px;
  height: 3px;
  margin: 0 auto 17px;
  background: #385723;
  border-radius: 10px;
}

.jd-pagina-representantes-titulo p {
  max-width: 700px;
  margin: 0 auto;
  color: #687064;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   LISTA DE REPRESENTANTES
========================================================= */

.jd-pagina-lista {
  width: 100%;
  border-top: 1px solid #e1e8dd;
}

.jd-pagina-representante {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  border-bottom: 1px solid #e1e8dd;
  transition: padding .25s ease, background .25s ease;
}

.jd-pagina-representante:hover {
  padding-left: 18px;
  background: #fafcf9;
}

.jd-pagina-representante-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #edf3e9;
  color: #385723;
  font-size: 19px;
}

.jd-pagina-representante-info {
  flex: 1;
  min-width: 0;
}

.jd-pagina-institucion {
  display: block;
  margin-bottom: 4px;
  color: #7b8377;
  font-size: 11px;
  font-weight: 600;
}

.jd-pagina-representante-info h3 {
  margin: 0 0 4px;
  color: #385723;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.jd-pagina-representante-info p {
  margin: 0;
  color: #687064;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .jd-pagina {
    padding: 75px 0;
  }

  .jd-pagina-directiva {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 750px;
  }

  .jd-pagina-directivo:last-child {
    grid-column: 1 / -1;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }

  .jd-pagina-representantes {
    width: 92%;
    margin-top: 70px;
  }

}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

  .jd-pagina {
    padding: 60px 0;
  }

  .jd-pagina-contenedor {
    width: 92%;
  }

  .jd-pagina-titulo {
    margin-bottom: 35px;
  }

  .jd-pagina-titulo h2 {
    font-size: 29px;
  }

  .jd-pagina-titulo p {
    font-size: 13px;
  }

  .jd-pagina-directiva {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .jd-pagina-directivo:last-child {
    grid-column: auto;
    max-width: none;
  }

  .jd-pagina-foto {
    width: 125px;
    height: 125px;
    margin-top: 25px;
  }

  .jd-pagina-directivo h3 {
    font-size: 17px;
  }

  .jd-pagina-representantes {
    width: 100%;
    margin-top: 60px;
  }

  .jd-pagina-representantes-titulo h2 {
    font-size: 26px;
  }

  .jd-pagina-representantes-titulo p {
    font-size: 13px;
  }

  .jd-pagina-representante {
    gap: 13px;
    padding: 17px 5px;
  }

  .jd-pagina-representante-icono {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .jd-pagina-institucion {
    font-size: 10px;
  }

  .jd-pagina-representante-info h3 {
    font-size: 15px;
  }

  .jd-pagina-representante-info p {
    font-size: 12px;
  }

}

/* =========================================================
   ACTIVIDAD DE LA JUNTA DIRECTIVA
========================================================= */

.junta-actividad {

  width: calc(100% - 80px);

  max-width: 1250px;

  margin: 70px auto 0;

  padding-top: 60px;

  border-top: 1px solid #e1e8dd;

}


/* =========================================================
   TÍTULO
========================================================= */

.junta-actividad-titulo {

  margin-bottom: 35px;

  text-align: center;

}


.junta-actividad-titulo>span {

  display: block;

  margin-bottom: 10px;

  color: #385723;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

}


.junta-actividad-titulo h3 {

  margin: 0 0 10px;

  color: #385723;

  font-size: 30px;

  font-weight: 600;

}


.junta-actividad-titulo p {

  max-width: 650px;

  margin: 0 auto;

  color: #687064;

  font-size: 13px;

  line-height: 1.6;

}


/* =========================================================
   ACCESOS
========================================================= */

.junta-actividad-accesos {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px;

  width: 100%;

}


/* =========================================================
   TARJETAS
========================================================= */

.junta-actividad-card {

  position: relative;

  display: flex;

  align-items: center;

  gap: 22px;

  width: 100%;

  min-height: 145px;

  padding: 28px 32px;

  border: 1px solid #dfe7db;

  border-radius: 18px;

  background: #ffffff;

  color: #385723;

  font-family: inherit;

  text-align: left;

  cursor: pointer;

  overflow: hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;

}


.junta-actividad-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 5px;

  background: #385723;

}


.junta-actividad-card:hover {

  transform: translateY(-5px);

  border-color: #bdcdb6;

  box-shadow:
    0 15px 35px rgba(56, 87, 35, .10);

}


/* =========================================================
   ICONO
========================================================= */

.junta-actividad-icono {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: #edf3e9;

  color: #385723;

  font-size: 25px;

}


/* =========================================================
   INFORMACIÓN
========================================================= */

.junta-actividad-info {

  min-width: 0;

}


.junta-actividad-info>span {

  display: block;

  margin-bottom: 6px;

  color: #8a9584;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;

}


.junta-actividad-info h4 {

  margin: 0 0 8px;

  color: #385723;

  font-size: 19px;

  font-weight: 700;

}


.junta-actividad-info p {

  margin: 0;

  color: #687064;

  font-size: 11px;

  line-height: 1.5;

}


/* =========================================================
   FLECHA
========================================================= */

.junta-actividad-flecha {

  margin-left: auto;

  flex-shrink: 0;

  color: #385723;

  font-size: 19px;

  transition:
    transform .25s ease;

}


.junta-actividad-card:hover .junta-actividad-flecha {

  transform: translateX(5px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  .junta-actividad {

    width: calc(100% - 40px);

  }


  .junta-actividad-accesos {

    grid-template-columns: 1fr;

  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 550px) {

  .junta-actividad {

    width: calc(100% - 30px);

    margin-top: 50px;

    padding-top: 45px;

  }


  .junta-actividad-titulo h3 {

    font-size: 25px;

  }


  .junta-actividad-titulo p {

    font-size: 12px;

  }


  .junta-actividad-card {

    min-height: 125px;

    padding: 22px;

    gap: 15px;

  }


  .junta-actividad-icono {

    width: 52px;

    height: 52px;

    font-size: 20px;

  }


  .junta-actividad-info h4 {

    font-size: 17px;

  }


  .junta-actividad-info p {

    font-size: 10px;

  }

}

/* =========================================
   ACTIVIDADES RECIENTES
========================================= */

.jd-actividades {
  width: 100%;
  padding: 70px 0;
}

.jd-actividades-contenedor {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}

.jd-actividades-encabezado {
  text-align: center;
  margin-bottom: 40px;
}

.jd-actividades-encabezado span {
  display: block;
  margin-bottom: 8px;
  color: #6c8062;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.jd-actividades-encabezado h2 {
  margin: 0 0 12px;
  color: #385723;
  font-weight: 800;
}

.jd-actividades-linea {
  width: 45px;
  height: 2px;
  margin: 0 auto 15px;
  background: #385723;
}

.jd-actividades-encabezado p {
  margin: 0;
  color: #687064;
  font-size: 14px;
}


/* LISTA */

.jd-actividades-lista {
  border-top: 1px solid #dfe4dc;
}

.jd-actividad-item {
  border-bottom: 1px solid #dfe4dc;
}


/* BOTÓN */

.jd-actividad-boton {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px;
  border: 0;
  background: transparent;
  color: #385723;
  text-align: left;
  cursor: pointer;
}

.jd-actividad-boton:hover {
  background: #f7f9f5;
}

.jd-actividad-boton div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.jd-actividad-boton span {
  color: #7a8474;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.jd-actividad-boton strong {
  color: #385723;
  font-size: 16px;
  font-weight: 600;
}

.jd-actividad-boton i {
  color: #385723;
  font-size: 15px;
  transition: transform .25s ease;
}


/* DETALLE */

.jd-actividad-detalle {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 25px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 8px;
  transition:
    max-height .35s ease,
    opacity .25s ease,
    padding .35s ease;
}

.jd-actividad-item.activo .jd-actividad-detalle {
  max-height: 300px;
  opacity: 1;
  padding: 0 8px 22px;
}

.jd-actividad-item.activo .jd-actividad-boton i {
  transform: rotate(180deg);
}


/* FOTO */

.jd-actividad-foto {
  width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
}

.jd-actividad-foto img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* TEXTO */

.jd-actividad-texto {
  display: flex;
  align-items: center;
}

.jd-actividad-texto p {
  margin: 0;
  color: #667064;
  font-size: 14px;
  line-height: 1.7;
}


/* RESPONSIVE */

@media(max-width:600px) {

  .jd-actividades {
    padding: 55px 0;
  }

  .jd-actividades-encabezado h2 {
    font-size: 30px;
  }

  .jd-actividad-boton {
    padding: 18px 4px;
  }

  .jd-actividad-boton strong {
    font-size: 14px;
  }

  .jd-actividad-detalle {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .jd-actividad-item.activo .jd-actividad-detalle {
    max-height: 500px;
  }

  .jd-actividad-foto {
    width: 100%;
    height: 190px;
  }

}

/* =========================================================
   NUESTROS VALORES
========================================================= */

.valores-contenedor {
  width: 100%;
  max-width: 1250px;
  margin: 45px auto 0;
  padding: 0 25px;
  box-sizing: border-box;
}

/* ENCABEZADO */

.valores-encabezado {
  text-align: center;
  margin-bottom: 35px;
}

.valores-encabezado h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 32px;
  font-weight: 700;
}

.valores-linea {
  width: 55px;
  height: 3px;
  margin: 0 auto 14px;
  background: #385723;
  border-radius: 20px;
}

.valores-encabezado p {
  max-width: 750px;
  margin: 0 auto;
  color: #687064;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   LISTA DE VALORES
========================================================= */

.valores-lista {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  border-top: 1px solid #e1e8dd;
  border-bottom: 1px solid #e1e8dd;
}

.valor-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 145px;
  padding: 20px 12px;
  border-right: 1px solid #e1e8dd;
  text-align: center;
  box-sizing: border-box;
  transition: .25s ease;
}

.valor-item:last-child {
  border-right: none;
}

.valor-item:hover {
  background: #fafcf9;
}

.valor-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #edf3e9;
  font-size: 25px;
}

.valor-item h3 {
  margin: 0;
  color: #385723;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .valores-lista {
    grid-template-columns: repeat(4, 1fr);
  }

  .valor-item:nth-child(4) {
    border-right: none;
  }

  .valor-item:nth-child(5),
  .valor-item:nth-child(6),
  .valor-item:nth-child(7) {
    border-top: 1px solid #e1e8dd;
  }

}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 650px) {

  .valores-contenedor {
    margin-top: 40px;
    padding: 0 15px;
  }

  .valores-encabezado h2 {
    font-size: 26px;
  }

  .valores-encabezado p {
    font-size: 12px;
  }

  .valores-lista {
    grid-template-columns: repeat(2, 1fr);
  }

  .valor-item {
    min-height: 130px;
    padding: 18px 10px;
  }

  .valor-item:nth-child(4) {
    border-right: 1px solid #e1e8dd;
  }

  .valor-item:nth-child(2n) {
    border-right: none;
  }

  .valor-item:nth-child(n+3) {
    border-top: 1px solid #e1e8dd;
  }

  .valor-icono {
    width: 50px;
    height: 50px;
    font-size: 21px;
    margin-bottom: 12px;
  }

  .valor-item h3 {
    font-size: 13px;
  }

}

/*--------------------------------------------------------------
# Misión y Visión
--------------------------------------------------------------*/

.mvv {
  padding: 90px 0;
  background: #ffffff;
}


/*--------------------------------------------------------------
# Encabezado
--------------------------------------------------------------*/

.mvv-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.mvv-header>span {
  display: block;

  color: #385723;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 12px;
}

.mvv-header h2 {
  margin: 0;

  color: #385723;

  font-size: 48px;
  font-weight: 700;

  line-height: 1.2;
}

.mvv-linea {
  width: 60px;
  height: 4px;

  margin: 18px auto;

  background: #5b9f3b;

  border-radius: 10px;
}

.mvv-header p {
  margin: 0;

  color: #555555;

  font-size: 17px;

  line-height: 1.7;
}


/*--------------------------------------------------------------
# Misión y Visión - Grid
--------------------------------------------------------------*/

.mvv-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;

  max-width: 1200px;

  margin: 0 auto 28px;
}


/*--------------------------------------------------------------
# Tarjetas
--------------------------------------------------------------*/

.mvv-card {
  position: relative;

  min-height: 330px;

  display: grid;

  grid-template-columns: 230px 1fr;

  overflow: hidden;

  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  border: 1px solid #eeeeee;

  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(56, 87, 35, 0.14);
}


/*--------------------------------------------------------------
# Área lateral
--------------------------------------------------------------*/

.mvv-lateral {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}


/* Misión */

.mvv-mision .mvv-lateral {
  background: #385723;
}


/* Visión */

.mvv-vision .mvv-lateral {
  background: #eef4ea;
}


/* Curva decorativa */

.mvv-lateral::after {
  content: "";

  position: absolute;

  top: -20%;
  right: -65px;

  width: 130px;
  height: 140%;

  border-radius: 50%;

  background: #ffffff;
}


/*--------------------------------------------------------------
# Iconos
--------------------------------------------------------------*/

.mvv-icono {
  position: relative;

  z-index: 2;

  width: 145px;
  height: 145px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  color: #385723;

  font-size: 55px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mvv-mision .mvv-icono {
  color: #385723;
}

.mvv-vision .mvv-icono {
  color: #385723;
}


/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/

.mvv-contenido {
  padding: 40px 40px 35px 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.mvv-numero {
  color: #385723;

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 12px;
}

.mvv-contenido h3 {
  margin: 0;

  color: #385723;

  font-size: 30px;

  font-weight: 700;

  text-transform: uppercase;
}

.mvv-sublinea {
  width: 48px;
  height: 3px;

  margin: 12px 0 20px;

  background: #5b9f3b;

  border-radius: 10px;
}

.mvv-contenido p {
  margin: 0;

  color: #333333;

  font-size: 15px;

  line-height: 1.8;

  text-align: justify;
}

/* =========================================================
   SECCIÓN EVENTOS
========================================================= */

.bloque-eventos {
  width: 100%;
  padding: 85px 0 110px;
  background: #ffffff;
}

.bloque-eventos>* {
  width: calc(100% - 80px);
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   TÍTULO
========================================================= */

.titulo-bloque {
  margin-bottom: 45px;
}

.titulo-bloque>div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.titulo-icono {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: #edf3e9;
  color: #385723;

  font-size: 25px;
}

.titulo-bloque h2 {
  margin: 0 0 5px;

  color: #385723;

  font-size: 36px;
  font-weight: 700;
}

.titulo-bloque p {
  margin: 0;

  color: #6c7568;

  font-size: 14px;
}


/* =========================================================
   PRÓXIMO EVENTO
========================================================= */

.invitacion-evento {

  display: grid;

  grid-template-columns: 1.05fr .95fr;

  width: 100%;

  min-height: 560px;

  overflow: hidden;

  border-radius: 28px;

  background: #ffffff;

  box-shadow:
    0 18px 45px rgba(56, 87, 35, .10);

  border: 1px solid #dfe7db;
}


/* =========================================================
   INFORMACIÓN DEL PRÓXIMO EVENTO
========================================================= */

.invitacion-info {

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 65px 70px;

  background:
    linear-gradient(135deg,
      #385723 0%,
      #466c2d 55%,
      #5c7949 100%);

  color: #ffffff;

  overflow: hidden;
}


/* decoración */

.invitacion-info::after {

  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -130px;
  bottom: -140px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .06);

}


/* =========================================================
   ETIQUETA
========================================================= */

.etiqueta-evento {

  width: fit-content;

  margin-bottom: 28px;

  padding: 9px 18px;

  border-radius: 30px;

  background: rgba(255, 255, 255, .15);

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


/* =========================================================
   FECHA
========================================================= */

.fecha-invitacion {

  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 25px;
}

.fecha-invitacion strong {

  color: #ffffff;

  font-size: 70px;

  line-height: .85;

  font-weight: 700;

  letter-spacing: -3px;
}

.fecha-invitacion div {

  display: flex;
  flex-direction: column;
}

.fecha-invitacion span {

  color: #ffffff;

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 1px;
}

.fecha-invitacion small {

  margin-top: 5px;

  color: rgba(255, 255, 255, .70);

  font-size: 13px;
}


/* =========================================================
   TÍTULO EVENTO
========================================================= */

.invitacion-info h2 {

  position: relative;
  z-index: 2;

  max-width: 620px;

  margin: 0 0 17px;

  color: #ffffff;

  font-size: 38px;

  line-height: 1.12;

  font-weight: 600;
}


/* =========================================================
   LUGAR
========================================================= */

.lugar-invitacion {

  position: relative;
  z-index: 2;

  margin: 0 0 18px;

  color: #ffffff;

  font-size: 14px;
}

.lugar-invitacion i {
  margin-right: 5px;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.invitacion-info>p:not(.lugar-invitacion) {

  position: relative;
  z-index: 2;

  max-width: 570px;

  margin: 0 0 30px;

  color: rgba(255, 255, 255, .82);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   BOTÓN
========================================================= */

.boton-invitacion {

  position: relative;
  z-index: 2;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  width: fit-content;

  padding: 14px 24px;

  border-radius: 10px;

  background: #ffffff;

  color: #385723;

  font-size: 12px;

  font-weight: 700;

  transition: all .25s ease;
}

.boton-invitacion:hover {

  transform: translateY(-3px);

  background: #edf3e9;

  color: #385723;
}

.boton-mas-informacion {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #385723;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.boton-mas-informacion i {
  transition: transform .25s ease;
}

.boton-mas-informacion:hover {
  color: #2d461c;
}

.boton-mas-informacion:hover i {
  transform: translateX(4px);
}

/* =========================================================
   CONTADOR + CALENDARIO
========================================================= */

.contador-evento {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px 60px;

  background: #f7f9f5;
}


/* =========================================================
   TÍTULO CONTADOR
========================================================= */

.contador-evento h3 {

  margin: 0 0 25px;

  color: #385723;

  font-size: 25px;

  font-weight: 600;

  text-align: center;
}


/* =========================================================
   CONTADOR
========================================================= */

.contador {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 12px;

  width: 100%;
}


/* =========================================================
   BLOQUES DEL CONTADOR
========================================================= */

.contador-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 135px;

  padding: 15px 8px;

  border-radius: 16px;

  background: #ffffff;

  border: 1px solid #dce6d8;

  box-shadow:
    0 8px 22px rgba(56, 87, 35, .06);
}


/* NÚMERO GRANDE */

.contador-item strong {

  display: block;

  color: #385723;

  font-size: 52px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -2px;
}


/* TEXTO */

.contador-item span {

  margin-top: 10px;

  color: #778171;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}


/* =========================================================
   CALENDARIO
========================================================= */

.calendario-evento {

  margin-top: 38px;

  padding-top: 30px;

  border-top: 1px solid #dce5d8;
}


/* =========================================================
   CABECERA CALENDARIO
========================================================= */

.calendario-cabecera {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 20px;
}

.calendario-cabecera strong {

  color: #385723;

  font-size: 17px;

  font-weight: 700;
}

.calendario-cabecera button {

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #e5ede1;

  color: #385723;

  font-size: 22px;

  cursor: pointer;

  transition: .25s ease;
}

.calendario-cabecera button:hover {

  background: #385723;

  color: #ffffff;
}


/* =========================================================
   DÍAS DE LA SEMANA
========================================================= */

.semana-calendario,
.dias-calendario {

  display: grid;

  grid-template-columns:
    repeat(7, 1fr);

  gap: 5px;

  text-align: center;
}

.semana-calendario span {

  color: #879181;

  font-size: 9px;

  font-weight: 700;
}


/* =========================================================
   DÍAS
========================================================= */

.dias-calendario {

  margin-top: 9px;
}

.dias-calendario span {

  min-height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #596254;

  font-size: 10px;
}


/* IMPORTANTE:
   Tu JS utiliza .evento-dia
*/

.dias-calendario .evento-dia {

  width: 32px;
  height: 32px;

  margin: auto;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #385723;

  color: #ffffff;

  font-weight: 700;
}


/* =========================================================
   SEPARACIÓN ENTRE APARTADOS
========================================================= */

.eventos-inferiores {

  margin-top: 90px;
}


/* =========================================================
   EVENTOS ASISTIDOS
========================================================= */

.eventos-asistidos-panel {

  width: 100%;

  padding: 55px;

  border-radius: 24px;

  background: #ffffff;

  border: 1px solid #dfe7db;

  box-shadow:
    0 12px 32px rgba(56, 87, 35, .05);
}


/* =========================================================
   ENCABEZADO
========================================================= */

.eventos-panel-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 35px;
}

.eventos-panel-titulo {

  display: flex;

  align-items: center;

  gap: 16px;
}

.eventos-panel-icono {

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 16px;

  background: #edf3e9;

  color: #385723;

  font-size: 23px;
}

.eventos-panel-titulo h2 {

  margin: 0 0 5px;

  color: #385723;

  font-size: 28px;

  font-weight: 600;
}

.eventos-panel-titulo p {

  margin: 0;

  color: #70796c;

  font-size: 13px;
}


/* =========================================================
   FILTROS
========================================================= */

.eventos-filtros {

  display: flex;

  gap: 7px;
}

.eventos-filtros button {

  padding: 9px 17px;

  border: 1px solid #cfdacb;

  border-radius: 30px;

  background: #ffffff;

  color: #385723;

  font-family: inherit;

  font-size: 10px;

  font-weight: 700;

  cursor: pointer;

  transition: .25s ease;
}

.eventos-filtros button:hover {

  background: #edf3e9;
}

.eventos-filtros button.activo {

  background: #385723;

  border-color: #385723;

  color: #ffffff;
}


/* =========================================================
   EVENTO ASISTIDO
========================================================= */

.evento-lista {

  display: grid;

  grid-template-columns:
    100px 1fr 170px;

  align-items: center;

  gap: 28px;

  padding: 24px 5px;

  border-bottom: 1px solid #e7ece4;
}

.evento-lista:last-child {

  border-bottom: none;
}


/* =========================================================
   FECHA
========================================================= */

.evento-lista-fecha {

  min-height: 95px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #f3f7f0;

  text-align: center;
}

.evento-lista-fecha span {

  color: #385723;

  font-size: 11px;

  font-weight: 700;
}

.evento-lista-fecha strong {

  margin: 5px 0;

  color: #385723;

  font-size: 27px;

  line-height: 1;
}

.evento-lista-fecha small {

  color: #7c8678;

  font-size: 9px;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.evento-lista-info h3 {

  margin: 0 0 8px;

  color: #385723;

  font-size: 19px;

  line-height: 1.3;

  font-weight: 700;
}

.evento-lista-lugar {

  display: block;

  margin-bottom: 8px;

  color: #697266;

  font-size: 11px;
}

.evento-lista-lugar i {

  color: #385723;

  margin-right: 4px;
}

.evento-lista-info p {

  margin: 0;

  color: #747d70;

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   BOTÓN GALERÍA
========================================================= */

.evento-lista-recursos {

  display: flex;

  justify-content: flex-end;
}

.evento-lista-recursos button {

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  width: 150px;

  padding: 13px 18px;

  border: 1px solid #cbd8c5;

  border-radius: 10px;

  background: #ffffff;

  color: #385723;

  font-family: inherit;

  font-size: 10px;

  font-weight: 700;

  cursor: pointer;

  transition: .25s ease;
}

.evento-lista-recursos button i {

  font-size: 16px;
}

.evento-lista-recursos button:hover {

  background: #385723;

  border-color: #385723;

  color: #ffffff;
}


/* =========================================================
   BOTÓN VER MÁS
========================================================= */

.boton-ver-eventos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  padding: 14px;
  border: 1px solid #385723;
  border-radius: 10px;
  background: #ffffff;
  color: #385723;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;

  transition: .25s ease;
}

.boton-ver-eventos:hover {

  background: #385723;

  color: #ffffff;
}


/* =========================================================
   OTROS EVENTOS
========================================================= */

.otros-eventos-panel {

  width: 100%;

  margin-top: 80px;

  padding: 55px;

  border-radius: 24px;

  background: #ffffff;

  border: 1px solid #dfe7db;

  box-shadow:
    0 12px 32px rgba(56, 87, 35, .05);
}


/* =========================================================
   LISTA OTROS
========================================================= */

.lista-otros-eventos {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.otro-evento {

  display: grid;

  grid-template-columns:
    85px 1fr;

  align-items: center;

  gap: 18px;

  min-height: 155px;

  padding: 20px;

  border: 1px solid #e0e8dc;

  border-radius: 16px;

  background: #fafbf9;

  transition: .25s ease;
}

.otro-evento:hover {

  transform: translateY(-4px);

  border-color: #c6d4c0;

  box-shadow:
    0 10px 25px rgba(56, 87, 35, .08);
}


/* =========================================================
   FECHA OTROS
========================================================= */

.otro-evento-fecha {

  min-height: 90px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #edf3e9;

  text-align: center;
}

.otro-evento-fecha span {

  color: #385723;

  font-size: 10px;

  font-weight: 700;
}

.otro-evento-fecha strong {

  margin: 5px 0;

  color: #385723;

  font-size: 21px;

  line-height: 1;
}

.otro-evento-fecha small {

  color: #687064;

  font-size: 9px;
}


/* =========================================================
   INFORMACIÓN OTROS
========================================================= */

.otro-evento-info h3 {

  margin: 0 0 7px;

  color: #385723;

  font-size: 16px;

  line-height: 1.3;

  font-weight: 700;
}

.otro-evento-info span {

  display: block;

  margin-bottom: 7px;

  color: #687064;

  font-size: 10px;
}

.otro-evento-info span i {

  margin-right: 3px;

  color: #385723;
}

.otro-evento-info p {

  margin: 0;

  color: #747d70;

  font-size: 10px;

  line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .bloque-eventos>* {
    width: calc(100% - 50px);
  }

  .invitacion-evento {
    grid-template-columns: 1fr;
  }

  .contador-evento {
    padding: 55px;
  }

  .lista-otros-eventos {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   TABLET PEQUEÑA
========================================================= */

@media (max-width: 800px) {

  .bloque-eventos {
    padding: 70px 0 90px;
  }

  .bloque-eventos>* {
    width: calc(100% - 35px);
  }

  .invitacion-info {
    padding: 50px;
  }

  .invitacion-info h2 {
    font-size: 32px;
  }

  .contador-evento {
    padding: 45px;
  }

  .eventos-asistidos-panel,
  .otros-eventos-panel {
    padding: 40px;
  }

  .eventos-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .eventos-filtros {
    width: 100%;
  }

  .eventos-filtros button {
    flex: 1;
  }

  .evento-lista {
    grid-template-columns:
      80px 1fr;
  }

  .evento-lista-recursos {
    grid-column: 2;
    justify-content: flex-start;
  }

  .lista-otros-eventos {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 550px) {

  .bloque-eventos {
    padding: 55px 0 70px;
  }

  .bloque-eventos>* {
    width: calc(100% - 24px);
  }


  /* TÍTULO */

  .titulo-bloque {
    margin-bottom: 30px;
  }

  .titulo-icono {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    font-size: 19px;
  }

  .titulo-bloque h2 {
    font-size: 25px;
  }

  .titulo-bloque p {
    font-size: 10px;
  }


  /* PRÓXIMO EVENTO */

  .invitacion-evento {
    border-radius: 20px;
  }

  .invitacion-info {
    padding: 35px 25px;
  }

  .etiqueta-evento {
    margin-bottom: 20px;

    padding: 8px 14px;

    font-size: 8px;
  }

  .fecha-invitacion {
    gap: 13px;
  }

  .fecha-invitacion strong {
    font-size: 48px;
  }

  .fecha-invitacion span {
    font-size: 13px;
  }

  .fecha-invitacion small {
    font-size: 10px;
  }

  .invitacion-info h2 {
    font-size: 26px;
  }

  .lugar-invitacion {
    font-size: 11px;
  }

  .invitacion-info>p:not(.lugar-invitacion) {
    font-size: 11px;
  }


  /* CONTADOR */

  .contador-evento {
    padding: 35px 17px;
  }

  .contador-evento h3 {
    margin-bottom: 22px;

    font-size: 21px;
  }

  .contador {
    gap: 5px;
  }

  .contador-item {
    min-height: 82px;

    padding: 10px 4px;

    border-radius: 9px;
  }

  .contador-item strong {
    font-size: 27px;
  }

  .contador-item span {
    margin-top: 7px;

    font-size: 6px;

    letter-spacing: .3px;
  }


  /* CALENDARIO */

  .calendario-evento {
    margin-top: 30px;
    padding-top: 25px;
  }

  .calendario-cabecera strong {
    font-size: 14px;
  }

  .calendario-cabecera button {
    width: 31px;
    height: 31px;

    font-size: 19px;
  }

  .semana-calendario span {
    font-size: 7px;
  }

  .dias-calendario {
    gap: 2px;
  }

  .dias-calendario span {
    min-height: 28px;
    font-size: 9px;
  }

  .dias-calendario .evento-dia {
    width: 28px;
    height: 28px;
  }


  /* EVENTOS ASISTIDOS */

  .eventos-inferiores {
    margin-top: 60px;
  }

  .eventos-asistidos-panel,
  .otros-eventos-panel {
    padding: 25px 17px;
    border-radius: 18px;
  }

  .eventos-panel-titulo {
    align-items: flex-start;
  }

  .eventos-panel-icono {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    font-size: 18px;
  }

  .eventos-panel-titulo h2 {
    font-size: 21px;
  }

  .eventos-panel-titulo p {
    font-size: 9px;
  }


  /* FILTROS */

  .eventos-filtros {
    gap: 5px;
  }

  .eventos-filtros button {
    padding: 8px 10px;

    font-size: 8px;
  }


  /* EVENTOS */

  .evento-lista {
    grid-template-columns:
      65px 1fr;

    gap: 14px;

    padding: 20px 2px;
  }

  .evento-lista-fecha {
    min-height: 75px;
  }

  .evento-lista-fecha span {
    font-size: 8px;
  }

  .evento-lista-fecha strong {
    font-size: 19px;
  }

  .evento-lista-fecha small {
    font-size: 7px;
  }

  .evento-lista-info h3 {
    font-size: 14px;
  }

  .evento-lista-lugar {
    font-size: 8px;
  }

  .evento-lista-info p {
    font-size: 8px;
  }

  .evento-lista-recursos {
    grid-column: 1 / -1;
    width: 100%;
  }

  .evento-lista-recursos button {
    width: 100%;
    padding: 12px;
  }


  /* OTROS EVENTOS */

  .otros-eventos-panel {
    margin-top: 55px;
  }

  .otro-evento {
    grid-template-columns:
      65px 1fr;

    gap: 12px;

    min-height: 125px;

    padding: 14px;
  }

  .otro-evento-fecha {
    min-height: 72px;
  }

  .otro-evento-fecha span {
    font-size: 8px;
  }

  .otro-evento-fecha strong {
    font-size: 16px;
  }

  .otro-evento-fecha small {
    font-size: 7px;
  }

  .otro-evento-info h3 {
    font-size: 12px;
  }

  .otro-evento-info span {
    font-size: 8px;
  }

  .otro-evento-info p {
    font-size: 8px;
  }

}
/* =====================================================
   AJUSTE FINAL - EVENTOS
   ===================================================== */

/* =========================
   EVENTOS ASISTIDOS
   ========================= */

.eventos-asistidos-panel {
    width:100%;
    padding:60px;
    border-radius:24px;
    background:#fff;
    border:1px solid #dfe7db;
    box-shadow:0 12px 32px rgba(56,87,35,.05);
}

.eventos-asistidos-panel .eventos-panel-header {
    margin-bottom:45px;
}

.eventos-asistidos-panel .eventos-panel-titulo {
    display:flex;
    align-items:center;
    gap:20px;
}

.eventos-asistidos-panel .eventos-panel-icono {
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:15px;
    background:#edf3e9;
    color:#385723;
    font-size:25px;
}

.eventos-asistidos-panel .eventos-panel-titulo h2 {
    margin:0 0 7px;
    color:#385723;
    font-size:30px !important;
    line-height:1.2;
    font-weight:700;
}

.eventos-asistidos-panel .eventos-panel-titulo p {
    margin:0;
    color:#747d70;
    font-size:15px !important;
}


/* EVENTO */

.evento-lista {
    display:grid;
    grid-template-columns:125px 1fr;
    gap:32px;
    padding:32px 0;
    border-bottom:1px solid #e8ede5;
}

.evento-lista:first-child {
    padding-top:0;
}


/* FECHA */

.evento-lista-fecha {
    min-height:125px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:12px;
    border-radius:15px;
    background:#edf3e9;
    text-align:center;
}

.evento-lista-fecha span {
    color:#385723;
    font-size:14px !important;
    font-weight:800;
    letter-spacing:1px;
}

.evento-lista-fecha strong {
    margin:7px 0;
    color:#385723;
    font-size:32px !important;
    line-height:1;
    font-weight:800;
}

.evento-lista-fecha small {
    color:#687064;
    font-size:13px !important;
}


/* INFORMACIÓN */

.evento-lista-info {
    min-width:0;
}

.evento-lista-info h3 {
    margin:0 0 13px;
    color:#385723;
    font-size:23px !important;
    line-height:1.35;
    font-weight:700;
}

.evento-lista-lugar {
    display:block;
    margin-bottom:12px;
    color:#687064;
    font-size:15px !important;
}

.evento-lista-lugar i {
    margin-right:5px;
    color:#385723;
    font-size:17px;
}

.evento-lista-info p {
    margin:0;
    color:#747d70;
    font-size:15px !important;
    line-height:1.65;
}


/* RECURSOS */

.evento-recursos {
    grid-column:2;
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:5px;
    padding-top:5px;
}

.boton-galeria-evento,
.boton-info-evento {
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#385723;
    font-size:15px !important;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
}

.boton-galeria-evento i,
.boton-info-evento i {
    font-size:18px;
}


/* =========================
   OTROS EVENTOS
   ========================= */

.otros-eventos-panel {
    width:100%;
    margin-top:80px;
    padding:60px;
    border-radius:24px;
    background:#fff;
    border:1px solid #dfe7db;
    box-shadow:0 12px 32px rgba(56,87,35,.05);
}

.otros-eventos-panel .eventos-panel-header {
    margin-bottom:45px;
}

.otros-eventos-panel .eventos-panel-titulo {
    display:flex;
    align-items:center;
    gap:20px;
}

.otros-eventos-panel .eventos-panel-icono {
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:15px;
    background:#edf3e9;
    color:#385723;
    font-size:25px;
}

.otros-eventos-panel .eventos-panel-titulo h2 {
    margin:0 0 7px;
    color:#385723;
    font-size:30px !important;
    line-height:1.2;
    font-weight:700;
}

.otros-eventos-panel .eventos-panel-titulo p {
    margin:0;
    color:#747d70;
    font-size:15px !important;
}


/* TARJETAS */

.lista-otros-eventos {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.otro-evento {
    display:grid;
    grid-template-columns:125px 1fr;
    align-items:center;
    gap:25px;
    min-height:235px;
    padding:30px;
    border:1px solid #dfe7db;
    border-radius:18px;
    background:#fafbf9;
    transition:all .25s ease;
}

.otro-evento:hover {
    transform:translateY(-4px);
    border-color:#c6d4c0;
    box-shadow:0 12px 28px rgba(56,87,35,.10);
}


/* FECHA */

.otro-evento-fecha {
    min-height:135px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:12px 8px;
    border-radius:15px;
    background:#edf3e9;
    text-align:center;
}

.otro-evento-fecha span {
    color:#385723;
    font-size:14px !important;
    font-weight:800;
    letter-spacing:1px;
}

.otro-evento-fecha strong {
    margin:8px 0;
    color:#385723;
    font-size:32px !important;
    line-height:1;
    font-weight:800;
}

.otro-evento-fecha small {
    color:#687064;
    font-size:13px !important;
}


/* INFORMACIÓN */

.otro-evento-info {
    min-width:0;
}

.otro-evento-info h3 {
    margin:0 0 13px;
    color:#385723;
    font-size:22px !important;
    line-height:1.35;
    font-weight:700;
}

.otro-evento-info span {
    display:block;
    margin-bottom:11px;
    color:#687064;
    font-size:15px !important;
    line-height:1.45;
}

.otro-evento-info span i {
    margin-right:5px;
    color:#385723;
    font-size:17px;
}

.otro-evento-info p {
    margin:0;
    color:#747d70;
    font-size:15px !important;
    line-height:1.6;
}


/* ENLACE */

.boton-mas-informacion {
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:#385723;
    font-size:15px !important;
    font-weight:700;
    text-decoration:none;
}

.boton-mas-informacion i {
    font-size:17px;
    transition:transform .25s ease;
}

.boton-mas-informacion:hover {
    color:#2d461c;
}

.boton-mas-informacion:hover i {
    transform:translateX(4px);
}


/* =========================
   TABLET
   ========================= */

@media (max-width:1100px) {

    .eventos-asistidos-panel,
    .otros-eventos-panel {
        padding:50px;
    }

    .lista-otros-eventos {
        grid-template-columns:repeat(2,1fr);
    }

    .otro-evento {
        min-height:220px;
    }
}


/* =========================
   MÓVIL
   ========================= */

@media (max-width:800px) {

    .eventos-asistidos-panel,
    .otros-eventos-panel {
        padding:40px;
    }

    .evento-lista {
        grid-template-columns:100px 1fr;
        gap:22px;
    }

    .evento-recursos {
        grid-column:2;
    }

    .lista-otros-eventos {
        grid-template-columns:1fr;
    }

    .otro-evento {
        grid-template-columns:100px 1fr;
        min-height:200px;
    }
}


@media (max-width:550px) {

    .eventos-asistidos-panel,
    .otros-eventos-panel {
        padding:28px 22px;
        border-radius:18px;
    }

    .eventos-asistidos-panel .eventos-panel-titulo h2,
    .otros-eventos-panel .eventos-panel-titulo h2 {
        font-size:24px !important;
    }

    .eventos-asistidos-panel .eventos-panel-titulo p,
    .otros-eventos-panel .eventos-panel-titulo p {
        font-size:13px !important;
    }

    .evento-lista {
        grid-template-columns:80px 1fr;
        gap:16px;
    }

    .evento-lista-fecha {
        min-height:100px;
    }

    .evento-lista-fecha strong {
        font-size:25px !important;
    }

    .evento-lista-info h3 {
        font-size:19px !important;
    }

    .evento-lista-lugar,
    .evento-lista-info p {
        font-size:13px !important;
    }

    .evento-recursos {
        grid-column:1 / -1;
        gap:20px;
        flex-wrap:wrap;
    }

    .otro-evento {
        grid-template-columns:80px 1fr;
        gap:17px;
        min-height:180px;
        padding:20px;
    }

    .otro-evento-fecha {
        min-height:110px;
    }

    .otro-evento-fecha strong {
        font-size:25px !important;
    }

    .otro-evento-info h3 {
        font-size:19px !important;
    }

    .otro-evento-info span,
    .otro-evento-info p {
        font-size:13px !important;
    }
}
/* =====================================================
   LÍNEA HISTÓRICA CONACOFI
===================================================== */

.historia {
  position: relative;
  width: 100%;
  min-height: 750px;

  padding: 70px 0 90px;

  background-image: url("../img/fondolinea.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* Contenido por encima del fondo */

.historia h2,
.historia .timeline {
  position: relative;
  z-index: 2;
}

.historia-header {
  text-align: center;
  margin-bottom: 80px;
}

.historia-header h2 {
  margin: 0;
  color: #315d24;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}


/* Decoración con hojita */

.historia-decoracion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.historia-decoracion>span {
  width: 65px;
  height: 2px;
  background: #315d24;
}

.hoja {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #315d24;
  font-size: 22px;
}

/* =========================================
   INFORMACIÓN FITOSANITARIA - INDEX
========================================= */

.index-informacion-etiqueta {
  display: inline-block;
  margin-bottom: 15px;
  color: #385723;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

#hero-carousel .carousel-item h2 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 58px;
  line-height: 1.1;
}

.index-informacion-opciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 30px 0 32px;
}

.index-informacion-opciones a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #385723;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s ease;
}

.index-informacion-opciones a i {
  font-size: 21px;
}

.index-informacion-opciones a:hover {
  color: #263d19;
  transform: translateY(-2px);
}

@media(max-width:600px) {

  .index-informacion-etiqueta {
    font-size: 10px;
  }

  #hero-carousel .carousel-item h2 {
    font-size: 36px;
  }

  .index-informacion-opciones {
    flex-direction: column;
    gap: 14px;
    margin: 25px 0;
  }

  .index-informacion-opciones a {
    font-size: 13px;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  padding: 0;
  position: relative;
}


/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);

  padding: 0;
  margin: 0;

  position: relative;
  overflow: hidden;
}


@media (max-height: 500px),
(max-width: 1200px) {

  .hero .carousel {
    min-height: calc(100vh - 48px);
  }

}

/* =========================================
   EVENTO DESTACADO - INDEX
========================================= */

.index-evento-etiqueta {
  display: inline-block;
  margin-bottom: 18px;
  color: #385723;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
}

.index-evento-fecha {
  margin: 18px 0 28px;
  color: #385723;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.5px;
}


/* =========================================
   TÍTULO DEL EVENTO
========================================= */

#hero-carousel .carousel-item h2 {
  max-width: 1050px;
  margin: 0 auto;
  color: #385723;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

#hero-carousel .carousel-item p {
  max-width: 900px;
  margin: 25px auto 0;
  color: #45513f;
  font-size: 19px;
  line-height: 1.75;
}


/* =========================================
   CONTADOR
========================================= */

.index-contador-evento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 38px 0 38px;
}

.index-contador-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 95px;
}

.index-contador-item strong {
  color: #385723;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

.index-contador-item span {
  margin-top: 10px;
  color: #385723;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.index-contador-separador {
  color: #385723;
  font-size: 38px;
  font-weight: 700;
  margin-top: -18px;
}


/* =========================================
   BOTÓN
========================================= */

#hero-carousel .btn-get-started {
  margin-top: 5px;
  padding: 15px 32px;
  font-size: 15px;
}


/* =========================================
   FLECHAS DEL CARRUSEL
========================================= */

#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  width: 8%;
}


/* =========================================
   INDICADORES
========================================= */

#hero-carousel .carousel-indicators {
  bottom: 30px;
}


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

@media(max-width:950px) {

  #hero-carousel .carousel-item h2 {
    max-width: 800px;
    font-size: 50px;
  }

  #hero-carousel .carousel-item p {
    max-width: 750px;
    font-size: 17px;
  }

  .index-evento-fecha {
    font-size: 16px;
  }

  .index-contador-evento {
    gap: 14px;
    margin: 32px 0;
  }

  .index-contador-item {
    min-width: 75px;
  }

  .index-contador-item strong {
    font-size: 44px;
  }

  .index-contador-separador {
    font-size: 30px;
  }

}


/* =========================================
   MÓVIL
========================================= */

@media(max-width:600px) {

  #hero-carousel .carousel-item h2 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.12;
  }

  #hero-carousel .carousel-item p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .index-evento-etiqueta {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .index-evento-fecha {
    margin: 14px 0 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .index-contador-evento {
    gap: 5px;
    margin: 25px 0 28px;
  }

  .index-contador-item {
    min-width: 48px;
  }

  .index-contador-item strong {
    font-size: 28px;
  }

  .index-contador-item span {
    margin-top: 7px;
    font-size: 7px;
    letter-spacing: 1px;
  }

  .index-contador-separador {
    font-size: 19px;
    margin-top: -12px;
  }

  #hero-carousel .btn-get-started {
    padding: 13px 26px;
    font-size: 13px;
  }

}

/*--------------------------------------------------------------
# Imagen
--------------------------------------------------------------*/

.hero img {

  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;

  transition: transform 8s ease;
}


/* Pequeño zoom al cambiar de slide */

.hero .carousel-item.active img {
  transform: scale(1.02);
}


/*--------------------------------------------------------------
# Carousel Item
--------------------------------------------------------------*/

.hero .carousel-item {

  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;

  justify-content: center;
  align-items: center;

  text-align: center;

  overflow: hidden;
}


/*--------------------------------------------------------------
# Degradado
--------------------------------------------------------------*/

.hero .carousel-item::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(20, 45, 20, 0.35) 0%,
      rgba(20, 45, 20, 0.18) 45%,
      rgba(20, 45, 20, 0.05) 100%);

  z-index: 2;

  pointer-events: none;
}


/*--------------------------------------------------------------
# Contenedor
--------------------------------------------------------------*/

.hero .container {

  position: relative;

  z-index: 3;

  width: 100%;

  max-width: 1000px;

  margin: 0 auto;

  padding-left: 30px;
  padding-right: 30px;

  padding-top: 0;
  padding-bottom: 0;

  background: transparent;

  border: 0;

  text-align: center;
}


/*--------------------------------------------------------------
# Contenido
--------------------------------------------------------------*/

.hero .carousel-item .container {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}


/*--------------------------------------------------------------
# Título
--------------------------------------------------------------*/

.hero h2 {

  margin: 0 auto 22px;
  max-width: 850px;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 700;
  color: #385723;
  text-align: center;
  letter-spacing: -1px;

  text-shdow:
    0 2px 8px rgba(255, 255, 255, 0.45);
}


/*--------------------------------------------------------------
# Texto
--------------------------------------------------------------*/

.hero p {

  max-width: 720px;

  margin: 0 auto 30px;

  font-size: 18px;

  line-height: 1.65;

  color: #40503a;

  text-align: center;

  text-shadow:
    0 1px 5px rgba(255, 255, 255, 0.35);
}


/*--------------------------------------------------------------
# Botón
--------------------------------------------------------------*/

.hero .btn-get-started {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-width: 160px;

  font-weight: 600;

  font-size: 14px;

  letter-spacing: 0.4px;

  padding: 13px 25px;

  margin: 0 auto;

  border-radius: 30px;

  color: #ffffff;

  background: #385723;

  border: 2px solid #385723;

  text-decoration: none;

  transition: all 0.35s ease;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Flecha del botón
--------------------------------------------------------------*/

.hero .btn-get-started::after {

  content: "→";

  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}


/*--------------------------------------------------------------
# Hover botón
--------------------------------------------------------------*/

.hero .btn-get-started:hover {

  background: #2D461C;

  border-color: #2D461C;

  color: #ffffff;

  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.20);
}


.hero .btn-get-started:hover::after {

  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Flecha anterior
--------------------------------------------------------------*/

.hero .carousel-control-prev {

  justify-content: flex-start;

  padding-left: 25px;

  z-index: 5;
}


/*--------------------------------------------------------------
# Flecha siguiente
--------------------------------------------------------------*/

.hero .carousel-control-next {

  justify-content: flex-end;

  padding-right: 25px;

  z-index: 5;
}


/*--------------------------------------------------------------
# Botones de navegación
--------------------------------------------------------------*/

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {

  background: rgba(255, 255, 255, 0.92);

  background-image: none;

  color: #385723;

  font-size: 20px;

  line-height: 0;

  border-radius: 50%;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.14);

  transition: all 0.3s ease;
}


.hero .carousel-control-prev,
.hero .carousel-control-next {

  transition: opacity 0.3s ease;

  opacity: 0.80;
}


.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {

  opacity: 1;
}


/* Hover flechas */

.hero .carousel-control-prev:hover .carousel-control-prev-icon,

.hero .carousel-control-next:hover .carousel-control-next-icon {

  background: #385723;

  color: #ffffff;

  transform: scale(1.08);
}


/*--------------------------------------------------------------
# INDICADORES — SOLO PUNTOS
--------------------------------------------------------------*/

.hero .carousel-indicators {

  position: absolute;

  z-index: 6;

  bottom: 25px;

  left: 0;
  right: 0;

  margin: 0;
  padding: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  list-style: none;
}


/*
 * Bootstrap puede generar botones.
 * Aquí no hay números visibles.
 */

.hero .carousel-indicators button {

  display: block;

  width: 8px !important;
  height: 8px !important;

  min-width: 8px;
  min-height: 8px;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;

  border-radius: 50% !important;

  background: #ffffff !important;

  background-image: none !important;

  opacity: 0.55;

  font-size: 0 !important;

  line-height: 0 !important;

  color: transparent !important;

  text-indent: -9999px;

  overflow: hidden;

  transition: all 0.35s ease;
}


/* Punto activo */

.hero .carousel-indicators button.active {

  width: 28px !important;
  height: 8px !important;

  min-width: 28px;

  border-radius: 20px !important;

  background: #385723 !important;

  opacity: 1;
}


/*--------------------------------------------------------------
# Compatibilidad con indicadores tipo <li>
--------------------------------------------------------------*/

.hero .carousel-indicators li {

  display: block;

  width: 8px !important;
  height: 8px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;

  border-radius: 50% !important;

  background: #ffffff !important;

  opacity: 0.55;

  font-size: 0 !important;

  line-height: 0 !important;

  color: transparent !important;

  text-indent: -9999px;

  overflow: hidden;

  transition: all 0.35s ease;
}


.hero .carousel-indicators li.active {

  width: 28px !important;
  height: 8px !important;

  border-radius: 20px !important;

  background: #385723 !important;

  opacity: 1;
}


/*--------------------------------------------------------------
# Animación suave del contenido del carrusel
--------------------------------------------------------------*/

.hero .carousel-item .container {
  opacity: 0;
  transform: translateY(18px);
}


/* Cuando el slide está activo */

.hero .carousel-item.active .container {
  animation:
    heroContenido 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}


@keyframes heroContenido {

  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}


/*--------------------------------------------------------------
# Pantallas grandes
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  .hero .container {

    padding-left: 70px;
    padding-right: 70px;
  }

  .hero h2 {

    font-size: 64px;
  }

}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 1200px) {

  .hero .container {

    padding-left: 60px;
    padding-right: 60px;
  }

  .hero h2 {

    font-size: 50px;
  }

}


/*--------------------------------------------------------------
# Móvil
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .hero .carousel {

    min-height: 600px;
  }


  .hero .carousel-item {

    align-items: center;
  }


  .hero .carousel-item::after {

    background:
      linear-gradient(90deg,
        rgba(20, 45, 20, 0.45) 0%,
        rgba(20, 45, 20, 0.15) 100%);
  }


  .hero .container {

    padding-left: 45px;
    padding-right: 45px;
  }


  .hero h2 {

    font-size: 40px;

    line-height: 1.08;

    margin-bottom: 16px;
  }


  .hero p {

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 25px;
  }


  .hero .btn-get-started {

    font-size: 13px;

    padding: 11px 20px;
  }


  .hero .carousel-control-prev {

    padding-left: 10px;
  }


  .hero .carousel-control-next {

    padding-right: 10px;
  }


  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {

    width: 38px;
    height: 38px;

    font-size: 16px;
  }

}


/*--------------------------------------------------------------
# Móvil pequeño
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .hero .carousel {

    min-height: 560px;
  }


  .hero .container {

    padding-left: 30px;
    padding-right: 30px;
  }


  .hero h2 {

    font-size: 34px;
  }


  .hero p {

    font-size: 14px;
  }


  .hero .carousel-indicators {

    bottom: 18px;
  }

}

/* =====================================================
   ENCABEZADO
===================================================== */

.historia-header {
  position: relative;
  text-align: center;
  margin-bottom: 75px;
  z-index: 2;
}

.historia-header h2 {
  margin: 0;
  color: #315d24;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
}


/* =====================================================
   DECORACIÓN CON HOJITA
===================================================== */

.historia-decoracion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 17px;
}

.historia-decoracion>span {
  width: 70px;
  height: 2px;
  background: #315d24;
  border-radius: 10px;
}

.hoja {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #315d24;
  font-size: 22px;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline {
    position:relative;
    max-width:1250px;
    height:620px;
    margin:0 auto;
}

/* Línea horizontal */
.timeline::before {
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:4px;
    background:#315d24;
    transform:translateY(-50%);
    border-radius:10px;
    z-index:1;
}

/* Animación de luz */
.timeline::after {
    content:"";
    position:absolute;
    top:calc(50% - 2px);
    left:-120px;
    width:120px;
    height:4px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent);
    z-index:2;
    animation:recorrerLinea 4s linear infinite;
    pointer-events:none;
}

@keyframes recorrerLinea {
    0% {
        transform:translateX(0);
    }

    100% {
        transform:translateX(1500px);
    }
}


/* =====================================================
   EVENTOS
===================================================== */

.timeline-item {
    position:absolute;
    width:190px;
    height:260px;
    left:var(--pos);
    transform:translateX(-50%);
    text-align:center;
    z-index:3;
}


/* =====================================================
   POSICIONES
===================================================== */

.timeline-item:nth-child(1) {
    --pos:8%;
}

.timeline-item:nth-child(2) {
    --pos:25%;
}

.timeline-item:nth-child(3) {
    --pos:42%;
}

.timeline-item:nth-child(4) {
    --pos:59%;
}

.timeline-item:nth-child(5) {
    --pos:76%;
}

.timeline-item:nth-child(6) {
    --pos:93%;
}


/* =====================================================
   EVENTOS ARRIBA
===================================================== */

.timeline-item.arriba {
    bottom:50%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
}


/* =====================================================
   EVENTOS ABAJO
===================================================== */

.timeline-item.abajo {
    top:50%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
}


/* =====================================================
   TARJETAS
===================================================== */

.timeline-card {
    position:relative;
    width:190px;
    min-height:155px;
    padding:25px 20px;
    background:#fff;
    border-radius:14px;
    border:1px solid rgba(49,93,36,.06);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:transform .3s ease,box-shadow .3s ease;
}

.timeline-item.abajo .timeline-card {
    margin-top:58px;
}

.timeline-card:hover {
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(49,93,36,.15);
}


/* =====================================================
   CONECTORES
===================================================== */

.timeline-item.arriba::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:39px;
    width:2px;
    height:25px;
    background:#315d24;
    transform:translateX(-50%);
    z-index:2;
}

.timeline-item.abajo::before {
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:25px;
    background:#315d24;
    transform:translateX(-50%);
    z-index:2;
}


/* =====================================================
   AÑOS
===================================================== */

.timeline-year {
    position:absolute;
    left:50%;
    width:82px;
    height:82px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    border:5px solid #315d24;
    color:#315d24;
    font-size:20px;
    font-weight:700;
    transform:translateX(-50%);
    z-index:10;
    box-shadow:0 0 0 8px #edf2eb,0 8px 20px rgba(0,0,0,.08);
    transition:transform .3s ease,background .3s ease,color .3s ease,box-shadow .3s ease;
}

.timeline-item.arriba .timeline-year {
    bottom:0;
}

.timeline-item.abajo .timeline-year {
    top:0;
}


/* =====================================================
   HOVER DEL AÑO
===================================================== */

.timeline-item:hover .timeline-year {
    transform:translateX(-50%) scale(1.08);
    background:#315d24;
    color:#fff;
    box-shadow:0 0 0 10px rgba(49,93,36,.08),0 8px 25px rgba(0,0,0,.12);
}


/* =====================================================
   TEXTO
===================================================== */

.timeline-card h3 {
    margin:0;
    color:#29402b;
    font-size:15px;
    line-height:1.5;
    font-weight:600;
}

.timeline-location {
    display:block;
    width:100%;
    margin-top:10px;
    color:#315d24;
    font-size:13px;
    font-weight:600;
    text-align:center;
}


/* =====================================================
   TARJETA ESPECIAL 2019
===================================================== */

.timeline-item:nth-child(4) .timeline-card {
    width:220px;
    min-height:200px;
    padding:25px 22px;
}

.timeline-item:nth-child(4) .timeline-card h3 {
    width:100%;
}

.timeline-item:nth-child(4) .timeline-location {
    width:100%;
    text-align:center;
    margin-top:12px;
}


/* =====================================================
   1992 Y 1994 - DOS EVENTOS
===================================================== */

.timeline-item.doble-1992,
.timeline-item.doble-1994 {
    position:absolute;
    top:0;
    bottom:0;
    width:190px;
    height:100%;
    display:block;
    transform:translateX(-50%);
}


/* Año */
.timeline-item.doble-1992 .timeline-year,
.timeline-item.doble-1994 .timeline-year {
    top:50%;
    bottom:auto;
    left:50%;
    transform:translate(-50%,-50%);
}


/* Tarjetas dobles */
.timeline-item.doble-1992 .timeline-card,
.timeline-item.doble-1994 .timeline-card {
    position:absolute;
    left:50%;
    width:190px;
    min-height:130px;
    padding:20px 18px;
    transform:translateX(-50%);
}


/* Tarjeta superior */
.timeline-item.doble-1992 .timeline-card-arriba,
.timeline-item.doble-1994 .timeline-card-arriba {
    bottom:calc(50% + 55px);
}


/* Tarjeta inferior */
.timeline-item.doble-1992 .timeline-card-abajo,
.timeline-item.doble-1994 .timeline-card-abajo {
    top:calc(50% + 55px);
}


/* Conectores de los eventos dobles */
.timeline-item.doble-1992::before,
.timeline-item.doble-1994::before,
.timeline-item.doble-1992::after,
.timeline-item.doble-1994::after {
    content:"";
    position:absolute;
    left:50%;
    width:2px;
    height:40px;
    background:#315d24;
    transform:translateX(-50%);
    z-index:2;
}

.timeline-item.doble-1992::before,
.timeline-item.doble-1994::before {
    bottom:calc(50% + 42px);
}

.timeline-item.doble-1992::after,
.timeline-item.doble-1994::after {
    top:calc(50% + 42px);
}


/* =====================================================
   ANIMACIÓN DE ENTRADA
===================================================== */

.timeline-item {
    opacity:0;
    animation:aparecerHistoria .8s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay:.2s;
}

.timeline-item:nth-child(2) {
    animation-delay:.4s;
}

.timeline-item:nth-child(3) {
    animation-delay:.6s;
}

.timeline-item:nth-child(4) {
    animation-delay:.8s;
}

.timeline-item:nth-child(5) {
    animation-delay:1s;
}

.timeline-item:nth-child(6) {
    animation-delay:1.2s;
}

@keyframes aparecerHistoria {
    from {
        opacity:0;
        transform:translateX(-50%) translateY(20px);
    }

    to {
        opacity:1;
        transform:translateX(-50%) translateY(0);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width:1100px) {

    .timeline {
        max-width:1000px;
    }

    .timeline-item {
        width:155px;
    }

    .timeline-card {
        width:155px;
        min-height:150px;
        padding:18px 14px;
    }

    .timeline-card h3 {
        font-size:13px;
    }

    .timeline-year {
        width:72px;
        height:72px;
        font-size:17px;
    }

    .timeline-item:nth-child(4) .timeline-card {
        width:185px;
        min-height:180px;
        padding:20px 16px;
    }

    /* Dobles */
    .timeline-item.doble-1992,
    .timeline-item.doble-1994 {
        width:155px;
    }

    .timeline-item.doble-1992 .timeline-card,
    .timeline-item.doble-1994 .timeline-card {
        width:155px;
        min-height:125px;
        padding:17px 13px;
    }

    .timeline-item.doble-1992 .timeline-card h3,
    .timeline-item.doble-1994 .timeline-card h3 {
        font-size:13px;
    }
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width:768px) {

    .historia {
        padding:55px 20px 70px;
    }

    .historia-header {
        margin-bottom:50px;
    }

    .historia-header h2 {
        font-size:28px;
    }

    .historia-decoracion > span {
        width:45px;
    }


    /* Línea vertical */
    .timeline {
        height:auto;
        padding-left:65px;
        display:flex;
        flex-direction:column;
        gap:35px;
    }

    .timeline::before {
        left:30px;
        right:auto;
        top:0;
        bottom:0;
        width:3px;
        height:auto;
        transform:none;
    }

    .timeline::after {
        display:none;
    }


    /* Todos los eventos */
    .timeline-item,
    .timeline-item.arriba,
    .timeline-item.abajo {
        position:relative;
        left:auto;
        top:auto;
        bottom:auto;
        width:100%;
        height:auto;
        transform:none;
        padding:0;
        text-align:left;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:15px;
    }


    /* Tarjetas */
    .timeline-card {
        width:100%;
        min-height:120px;
        padding:20px;
        text-align:left;
        justify-content:center;
        align-items:flex-start;
    }

    .timeline-card h3 {
        font-size:14px;
        line-height:1.5;
    }


    /* Año */
    .timeline-year {
        left:-32px;
        top:50%;
        width:64px;
        height:64px;
        transform:translate(-50%,-50%);
        font-size:15px;
    }

    .timeline-item:hover .timeline-year {
        transform:translate(-50%,-50%) scale(1.05);
    }


    /* Conectores normales */
    .timeline-item.arriba::after,
    .timeline-item.abajo::before {
        display:none;
    }


    /* =================================================
       1992 Y 1994 EN MÓVIL
    ================================================= */

    .timeline-item.doble-1992,
    .timeline-item.doble-1994 {
        position:relative;
        left:auto;
        top:auto;
        bottom:auto;
        width:100%;
        height:auto;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:15px;
        transform:none;
    }

    .timeline-item.doble-1992 .timeline-card,
    .timeline-item.doble-1994 .timeline-card {
        position:relative;
        left:auto;
        top:auto;
        bottom:auto;
        width:100%;
        min-height:120px;
        transform:none;
        padding:20px;
    }

    .timeline-item.doble-1992 .timeline-card-arriba,
    .timeline-item.doble-1994 .timeline-card-arriba {
        order:1;
    }

    .timeline-item.doble-1992 .timeline-card-abajo,
    .timeline-item.doble-1994 .timeline-card-abajo {
        order:2;
    }

    .timeline-item.doble-1992 .timeline-year,
    .timeline-item.doble-1994 .timeline-year {
        position:absolute;
        left:-32px;
        top:50%;
        width:64px;
        height:64px;
        transform:translate(-50%,-50%);
        z-index:10;
    }

    .timeline-item.doble-1992::before,
    .timeline-item.doble-1992::after,
    .timeline-item.doble-1994::before,
    .timeline-item.doble-1994::after {
        display:none;
    }


    /* 2019 */
    .timeline-item:nth-child(4) .timeline-card {
        width:100%;
        min-height:150px;
        padding:20px;
    }

    .timeline-location {
        text-align:left;
    }
}


/* =====================================================
   MÓVIL PEQUEÑO
===================================================== */

@media (max-width:480px) {

    .historia {
        padding:45px 15px 60px;
    }

    .timeline {
        padding-left:58px;
        gap:28px;
    }

    .timeline::before {
        left:27px;
        width:3px;
    }

    .timeline-card {
        min-height:110px;
        padding:17px;
        border-radius:12px;
    }

    .timeline-card h3 {
        font-size:13px;
    }

    .timeline-year {
        left:-29px;
        width:58px;
        height:58px;
        border-width:4px;
        font-size:14px;
    }

    .timeline-item.doble-1992 .timeline-year,
    .timeline-item.doble-1994 .timeline-year {
        left:-29px;
        width:58px;
        height:58px;
    }
}



/*--------------------------------------------------------------
# Nuestros Principios
--------------------------------------------------------------*/

.principios {
  max-width: 1200px;

  margin: 0 auto;

  padding: 38px 55px;

  background: #ffffff;

  border: 1px solid #eeeeee;

  border-radius: 18px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}


/*--------------------------------------------------------------
# Encabezado Principios
--------------------------------------------------------------*/

.principios-header {
  text-align: center;

  margin-bottom: 35px;
}

.principios-header h3 {
  margin: 0;

  color: #385723;

  font-size: 24px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 4px;
}

.principios-linea {
  width: 50px;
  height: 3px;

  margin: 14px auto 0;

  background: #5b9f3b;

  border-radius: 10px;
}


/*--------------------------------------------------------------
# Principios Grid
--------------------------------------------------------------*/

.principios-grid {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 45px;
}


/*--------------------------------------------------------------
# Principio
--------------------------------------------------------------*/

.principio-item {
  display: flex;

  align-items: center;

  gap: 30px;
}


/*--------------------------------------------------------------
# Iconos Principios
--------------------------------------------------------------*/

.principio-icono {
  flex-shrink: 0;

  width: 110px;
  height: 110px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 42px;

  color: #ffffff;
}

.principio-icono.colaboracion {
  background: #4caf50;
}

.principio-icono.compromiso {
  background: #2450c5;
}


/*--------------------------------------------------------------
# Contenido Principios
--------------------------------------------------------------*/

.principio-contenido {
  flex: 1;
}

.principio-contenido h4 {
  margin: 0;

  color: #385723;

  font-size: 22px;

  font-weight: 700;

  text-transform: uppercase;
}

.principio-sublinea {
  width: 40px;
  height: 3px;

  margin: 10px 0 15px;

  background: #5b9f3b;

  border-radius: 10px;
}

.principio-contenido p {
  margin: 0;

  color: #444444;

  font-size: 14px;

  line-height: 1.75;

  text-align: justify;
}


/*--------------------------------------------------------------
# Separador
--------------------------------------------------------------*/

.principios-separador {
  width: 1px;

  height: 150px;

  background: #dfe6da;
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 1100px) {

  .mvv-card {
    grid-template-columns: 180px 1fr;
  }

  .mvv-lateral::after {
    right: -55px;
  }

  .mvv-icono {
    width: 120px;
    height: 120px;

    font-size: 45px;
  }

  .principios {
    padding: 35px 35px;
  }

  .principios-grid {
    gap: 25px;
  }

  .principio-item {
    gap: 20px;
  }

  .principio-icono {
    width: 90px;
    height: 90px;

    font-size: 35px;
  }

}


/*--------------------------------------------------------------
# Tablet pequeño
--------------------------------------------------------------*/

@media (max-width: 900px) {

  .mvv-grid {
    grid-template-columns: 1fr;

    max-width: 700px;
  }

  .principios-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .principios-separador {
    width: 100%;
    height: 1px;
  }

}


/*--------------------------------------------------------------
# Celular
--------------------------------------------------------------*/

@media (max-width: 600px) {

  .mvv {
    padding: 65px 0;
  }

  .mvv-header h2 {
    font-size: 34px;
  }

  .mvv-header p {
    font-size: 15px;
  }

  .mvv-card {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .mvv-lateral {
    min-height: 180px;
  }

  .mvv-lateral::after {
    display: none;
  }

  .mvv-icono {
    width: 110px;
    height: 110px;

    font-size: 42px;
  }

  .mvv-contenido {
    padding: 30px 25px;
  }

  .mvv-contenido h3 {
    font-size: 26px;
  }

  .principios {
    padding: 30px 22px;
  }

  .principios-header h3 {
    font-size: 20px;

    letter-spacing: 2px;
  }

  .principio-item {
    flex-direction: column;

    text-align: center;
  }

  .principio-sublinea {
    margin: 10px auto 15px;
  }

  .principio-contenido p {
    text-align: justify;
  }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .row {
  min-height: 500px;
  align-items: center;
}

.about .about-img {
  position: relative;
  min-height: 430px;
  padding-right: 35px;
}

.about .about-img img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(56, 87, 35, 0.12);
}

.about .about-content {
  padding: 20px 10px 20px 25px;
}

.about .about-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #385723;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about .about-content h2 {
  margin: 0;
  max-width: 650px;
  color: var(--heading-color);
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
}

.about .about-line {
  width: 55px;
  height: 3px;
  margin: 18px 0 22px;
  background-color: #385723;
  border-radius: 3px;
}

.about .about-content h3 {
  margin-bottom: 15px;
  color: #385723;
  font-size: 22px;
  font-weight: 700;
}

.about .about-content p {
  margin-bottom: 16px;
  color: #555555;
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;
}

@media (max-width: 991px) {
  .about .about-img {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about .about-img img {
    height: 380px;
  }

  .about .about-content {
    padding: 10px 0;
  }

  .about .about-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .about .about-img {
    min-height: 300px;
  }

  .about .about-img img {
    height: 300px;
  }

  .about .about-content h2 {
    font-size: 29px;
  }

  .about .about-content h3 {
    font-size: 20px;
  }

  .about .about-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================================================
   INFORMACIÓN FITOSANITARIA
========================================================= */

.informacion-fitosanitaria {
  width: 100%;
  padding: 100px 0;
  background: transparent;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.informacion-contenedor {
  width: 94%;
  max-width: 1500px;

  margin: 0 auto;

  padding: 0;

  background: transparent;

  border: none;

  box-shadow: none;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.informacion-encabezado {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.informacion-encabezado h2 {
  margin: 0 0 12px;
  color: #385723;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.informacion-linea {
  width: 55px;
  height: 3px;
  margin: 0 auto 18px;
  background: #385723;
  border-radius: 10px;
}

.informacion-encabezado p {
  max-width: 750px;
  margin: 0 auto;
  color: #596355;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   TARJETAS
========================================================= */

.informacion-grid {
  display: grid;

  width: 100%;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 30px;
}


.informacion-card {
  width: 100%;

  overflow: hidden;

  border: 1px solid #e4e9e1;

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .07);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}


.informacion-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(56, 87, 35, .14);
}


/* =========================================================
   IMAGEN
========================================================= */

.informacion-imagen {
  position: relative;

  width: 100%;

  height: 260px;

  overflow: hidden;
}


.informacion-imagen img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .6s ease;
}


.informacion-card:hover .informacion-imagen img {
  transform: scale(1.06);
}


/* =========================================================
   ETIQUETA
========================================================= */

.informacion-tipo {
  position: absolute;

  top: 16px;
  left: 16px;

  padding: 7px 12px;

  border-radius: 20px;

  background: rgba(255, 255, 255, .96);

  color: #385723;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .7px;
}


/* =========================================================
   CONTENIDO
========================================================= */

.informacion-card-contenido {
  padding: 30px;
}

.informacion-card-contenido h3 {
  margin: 0 0 12px;

  color: #385723;

  font-size: 23px;
}

.informacion-card-contenido p {
  min-height: 70px;

  margin: 0 0 20px;

  color: #687064;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   ENLACE
========================================================= */

.informacion-card-contenido a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #385723;

  font-size: 13px;

  font-weight: 700;
}

.informacion-card-contenido a i {
  transition:
    transform .3s ease;
}

.informacion-card-contenido a:hover i {
  transform: translateX(5px);
}


/* =========================================================
   BOTÓN GENERAL
========================================================= */

.informacion-boton {
  display: flex;

  justify-content: center;

  margin-top: 45px;
}

.informacion-boton a {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 14px 28px;

  border-radius: 30px;

  background: #385723;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  transition: all .3s ease;
}

.informacion-boton a:hover {
  background: #2d461c;

  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .informacion-contenedor {
    width: 92%;
  }

  .informacion-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .informacion-card:last-child {
    grid-column: 1 / -1;

    max-width: 600px;

    margin: 0 auto;
  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 700px) {

  .informacion-fitosanitaria {
    padding: 65px 0;
  }

  .informacion-contenedor {
    width: 92%;
  }

  .informacion-encabezado {
    margin-bottom: 35px;
  }

  .informacion-encabezado h2 {
    font-size: 30px;
  }

  .informacion-encabezado p {
    font-size: 14px;
  }

  .informacion-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .informacion-card:last-child {
    grid-column: auto;

    max-width: none;
  }

  .informacion-imagen {
    height: 220px;
  }

}

/* =========================================================
   EVENTOS ASISTIDOS
========================================================= */

.eventos-asistidos {
  width: 100%;
  padding: 90px 0;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.eventos-asistidos-header {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 35px;
}

.eventos-asistidos-icono {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #eef4e9;

  color: #385723;

  font-size: 20px;
}

.eventos-asistidos-header h2 {
  margin: 0 0 5px;

  color: #385723;

  font-size: 30px;

  font-weight: 400;
}

.eventos-asistidos-header p {
  margin: 0;

  color: #6d7469;

  font-size: 13px;
}


/* =========================================================
   FILTRO POR AÑO
========================================================= */

.filtro-años {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 30px;
}

.año-evento {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 72px;
  height: 42px;

  padding: 8px 18px;

  border: 1px solid #dce4d7;

  border-radius: 25px;

  background: #ffffff;

  color: #385723;

  font-family: inherit;

  font-size: 13px;

  cursor: pointer;

  transition: all .25s ease;
}

.año-evento:hover {
  border-color: #385723;

  background: #f3f7f0;
}

.año-evento.activo {
  border-color: #385723;

  background: #385723;

  color: #ffffff;
}


/* =========================================================
   CONTENEDOR DE EVENTOS
========================================================= */

.eventos-historico {
  width: 100%;
}


/* =========================================================
   TARJETA DEL EVENTO
========================================================= */

.evento-asistido {
  display: grid;

  grid-template-columns:
    minmax(300px, 0.8fr) minmax(0, 1.2fr);

  width: 100%;

  min-height: 350px;

  margin-bottom: 30px;

  overflow: hidden;

  border: 1px solid #e2e8df;

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .07);

  transition:
    box-shadow .3s ease,
    transform .3s ease;
}

.evento-asistido:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(56, 87, 35, .11);
}


/* =========================================================
   IMAGEN
========================================================= */

.evento-asistido-imagen {
  width: 100%;

  min-height: 350px;

  overflow: hidden;

  background: #eef2eb;
}

.evento-asistido-imagen img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .5s ease;
}

.evento-asistido:hover .evento-asistido-imagen img {
  transform: scale(1.04);
}


/* =========================================================
   CONTENIDO
========================================================= */

.evento-asistido-contenido {
  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  padding: 45px;
}

.evento-asistido-tipo {
  display: inline-block;

  margin-bottom: 12px;

  color: #718267;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.evento-asistido-contenido h3 {
  margin: 0 0 20px;

  color: #385723;

  font-size: 30px;

  font-weight: 500;

  line-height: 1.2;
}


/* =========================================================
   DATOS DEL EVENTO
========================================================= */

.evento-dato {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 10px;

  color: #555d53;

  font-size: 13px;
}

.evento-dato i {
  width: 17px;

  color: #385723;

  font-size: 15px;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.evento-descripcion {
  max-width: 650px;

  margin: 15px 0 28px;

  color: #687064;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   BOTONES
========================================================= */

.evento-asistido-botones {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  width: 100%;
}


/* Todos los botones */

.evento-asistido-botones .btn-evento {

  width: auto;

  min-width: 125px;

  height: 42px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 10px 18px;

  border: 1px solid #385723;

  border-radius: 25px;

  background: #ffffff;

  color: #385723;

  font-family: inherit;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;

  cursor: pointer;

  box-sizing: border-box;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease;
}


/* Hover */

.evento-asistido-botones .btn-evento:hover {

  background: #385723;

  border-color: #385723;

  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   BOTÓN DOCUMENTOS
========================================================= */

.evento-asistido-botones .btn-documentos {

  width: auto;

  min-width: 125px;

  background: #385723;

  border-color: #385723;

  color: #ffffff;
}

.evento-asistido-botones .btn-documentos:hover {

  background: #2d461c;

  border-color: #2d461c;

  color: #ffffff;
}


/* =========================================================
   ICONOS DE BOTONES
========================================================= */

.evento-asistido-botones .btn-evento i {

  font-size: 13px;

  flex-shrink: 0;
}


/* =========================================================
   SIN EVENTOS
========================================================= */

.sin-eventos {

  width: 100%;

  padding: 35px;

  border: 1px solid #e2e8df;

  border-radius: 15px;

  background: #ffffff;

  color: #687064;

  text-align: center;

  box-sizing: border-box;
}


/* =========================================================
   MODAL DE DOCUMENTOS
========================================================= */

.modal-documentos {

  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  background:
    rgba(25, 35, 22, .65);

  backdrop-filter: blur(5px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}


/* MODAL ABIERTO */

.modal-documentos.activo {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   CONTENIDO DEL MODAL
========================================================= */

.modal-documentos-contenido {

  width: 100%;

  max-width: 720px;

  max-height: 85vh;

  overflow-y: auto;

  padding: 30px;

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .25);

  box-sizing: border-box;

  transform:
    translateY(20px) scale(.97);

  transition:
    transform .25s ease;
}


/* Animación al abrir */

.modal-documentos.activo .modal-documentos-contenido {

  transform:
    translateY(0) scale(1);
}


/* =========================================================
   ENCABEZADO DEL MODAL
========================================================= */

.modal-documentos-header {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;

  padding-bottom: 20px;

  margin-bottom: 20px;

  border-bottom:
    1px solid #e5e9e2;
}


.modal-documentos-header span {

  display: block;

  color: #718267;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.modal-documentos-header h2 {

  margin: 7px 0 0;

  color: #385723;

  font-size: 25px;

  font-weight: 600;

  line-height: 1.25;
}


/* =========================================================
   BOTÓN CERRAR
========================================================= */

.modal-documentos-cerrar {

  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #eef3ea;

  color: #385723;

  font-size: 14px;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}


.modal-documentos-cerrar:hover {

  background: #385723;

  color: #ffffff;

  transform: rotate(90deg);
}


/* =========================================================
   LISTA DE DOCUMENTOS
========================================================= */

.lista-documentos {

  display: flex;

  flex-direction: column;

  gap: 12px;

  width: 100%;
}


/* =========================================================
   DOCUMENTO
========================================================= */

.documento-item {

  display: flex;

  align-items: center;

  gap: 15px;

  width: 100%;

  padding: 15px;

  border: 1px solid #e4e9e1;

  border-radius: 13px;

  background: #fafbf9;

  box-sizing: border-box;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.documento-item:hover {

  border-color: #b7c6ad;

  background: #f4f7f1;

  transform: translateX(3px);
}


/* =========================================================
   ICONO DEL DOCUMENTO
========================================================= */

.documento-icono {

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 11px;

  background: #e8efe3;

  color: #385723;

  font-size: 20px;
}


/* =========================================================
   INFORMACIÓN DEL DOCUMENTO
========================================================= */

.documento-info {

  flex: 1;

  min-width: 0;
}


.documento-info h3 {

  margin: 0 0 4px;

  color: #303a2c;

  font-size: 14px;

  font-weight: 600;

  line-height: 1.4;
}


.documento-info span {

  color: #7a8376;

  font-size: 11px;
}


/* =========================================================
   BOTÓN VER
========================================================= */

.documento-abrir {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 6px;

  flex-shrink: 0;

  min-width: 65px;

  padding: 8px 14px;

  border-radius: 20px;

  background: #385723;

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;

  text-decoration: none;

  transition:
    background .25s ease,
    transform .25s ease;
}


.documento-abrir:hover {

  background: #2d461c;

  color: #ffffff;

  transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .evento-asistido {

    grid-template-columns: 1fr;

  }


  .evento-asistido-imagen {

    height: 300px;

    min-height: 0;

  }


  .evento-asistido-contenido {

    padding: 35px;

  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

  .eventos-asistidos {

    padding: 60px 0;

  }


  .eventos-asistidos-header {

    gap: 12px;

  }


  .eventos-asistidos-icono {

    width: 42px;

    height: 42px;

    font-size: 17px;

  }


  .eventos-asistidos-header h2 {

    font-size: 25px;

  }


  .eventos-asistidos-header p {

    font-size: 12px;

    line-height: 1.5;

  }


  .filtro-años {

    flex-wrap: wrap;

    margin-bottom: 25px;

  }


  .año-evento {

    min-width: 65px;

    height: 38px;

  }


  .evento-asistido {

    border-radius: 16px;

    margin-bottom: 20px;

  }


  .evento-asistido-imagen {

    height: 230px;

  }


  .evento-asistido-contenido {

    padding: 28px 22px;

  }


  .evento-asistido-contenido h3 {

    font-size: 24px;

  }


  .evento-asistido-botones {

    flex-direction: column;

    align-items: stretch;

    width: 100%;

  }


  .evento-asistido-botones .btn-evento {

    width: 100%;

    min-width: 0;

  }


  /* MODAL */

  .modal-documentos {

    padding: 12px;

  }


  .modal-documentos-contenido {

    max-height: 90vh;

    padding: 22px;

    border-radius: 17px;

  }


  .modal-documentos-header h2 {

    font-size: 21px;

  }


  .documento-item {

    align-items: flex-start;

    flex-wrap: wrap;

  }


  .documento-info {

    padding-top: 2px;

  }


  .documento-abrir {

    margin-left: 60px;

  }

}

/*--------------------------------------------------------------
# Convocatorias Section
--------------------------------------------------------------*/

.convocatorias {
  padding: 70px 0 80px;
}

.convocatorias-intro {
  max-width: 850px;
  margin-bottom: 35px;
}

.convocatorias-label {
  display: block;
  margin-bottom: 8px;
  color: #385723;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.convocatorias-intro h2 {
  margin: 0;
  color: #385723;
  font-size: 46px;
  font-weight: 700;
}

.convocatorias-line {
  width: 55px;
  height: 3px;
  margin: 15px 0 18px;
  background: #385723;
  border-radius: 3px;
}

.convocatorias-intro p {
  margin: 0;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}


/*--------------------------------------------------------------
# Filtros
--------------------------------------------------------------*/

.convocatorias-filtros {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  margin-bottom: 25px;
  background: #fff;
  border: 1px solid #e5e8e2;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.convocatorias-busqueda {
  position: relative;
  flex: 1;
}

.convocatorias-busqueda i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #385723;
  font-size: 19px;
}

.convocatorias-busqueda input,
.convocatorias-filtros select {
  height: 46px;
  border: 1px solid #dfe5da;
  border-radius: 6px;
  background: #fff;
  color: #555;
  outline: none;
  font-size: 15px;
}

.convocatorias-busqueda input {
  width: 100%;
  padding: 0 15px 0 43px;
}

.convocatorias-filtros select {
  width: 190px;
  padding: 0 14px;
}

.convocatorias-busqueda input:focus,
.convocatorias-filtros select:focus {
  border-color: #385723;
}

.convocatorias-filtros button {
  height: 46px;
  padding: 0 27px;
  border: 0;
  border-radius: 6px;
  background: #385723;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.convocatorias-filtros button:hover {
  background: #2d461c;
}


/*--------------------------------------------------------------
# Lista de convocatorias
--------------------------------------------------------------*/

.convocatorias-lista {
  overflow: hidden;
  border: 1px solid #e5e8e2;
  border-radius: 10px;
  background: #fff;
}

.convocatoria-item {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 92px;
  padding: 17px 22px;
  border-bottom: 1px solid #e8ebe5;
  transition: 0.3s;
}

.convocatoria-item:last-child {
  border-bottom: 0;
}

.convocatoria-item:hover {
  background: #f8faf6;
}


/* Nombre */

.convocatoria-nombre {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.convocatoria-icono {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf4e9;
  color: #385723;
  font-size: 19px;
}

.convocatoria-nombre h3 {
  margin: 0;
  color: #385723;
  font-size: 19px;
  font-weight: 600;
}


/* Fecha */

.convocatoria-fecha {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.convocatoria-fecha span {
  color: #888;
  font-size: 12px;
}

.convocatoria-fecha span i {
  margin-right: 6px;
  color: #385723;
  font-size: 14px;
}

.convocatoria-fecha strong {
  color: #444;
  font-size: 14px;
  font-weight: 500;
}


/* Estado */

.convocatoria-estado {
  min-width: 80px;
  padding: 9px 14px;
  border-radius: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.convocatoria-estado.cerrada {
  background: #fde1e1;
  color: #c62828;
}

.convocatoria-estado.abierta {
  background: #e5f4df;
  color: #385723;
}


/* Botón */

.btn-convocatoria {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #dfe5da;
  border-radius: 6px;
  color: #555;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-convocatoria:hover {
  background: #385723;
  border-color: #385723;
  color: #fff;
}

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


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .convocatorias-filtros {
    flex-wrap: wrap;
  }

  .convocatorias-busqueda {
    flex: 1 1 100%;
  }

  .convocatorias-filtros select {
    flex: 1;
  }

  .convocatoria-item {
    flex-wrap: wrap;
  }

  .convocatoria-nombre {
    flex: 1 1 100%;
  }

}


@media (max-width: 575px) {

  .convocatorias {
    padding: 50px 0 60px;
  }

  .convocatorias-intro h2 {
    font-size: 34px;
  }

  .convocatorias-intro p {
    font-size: 16px;
  }

  .convocatorias-filtros {
    padding: 14px;
  }

  .convocatorias-filtros select,
  .convocatorias-filtros button {
    width: 100%;
    flex: 1 1 100%;
  }

  .convocatoria-item {
    padding: 17px;
    gap: 12px;
  }

  .convocatoria-nombre h3 {
    font-size: 17px;
  }

  .convocatoria-fecha {
    width: auto;
    margin-left: 57px;
  }

  .convocatoria-estado {
    margin-left: 57px;
  }

  .btn-convocatoria {
    margin-left: 57px;
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Sitios de interés
--------------------------------------------------------------*/

.sitios-carrusel {
  position: relative;
  width: 100%;
  padding: 10px 55px 50px;
}


/*--------------------------------------------------------------
# Área visible
--------------------------------------------------------------*/

.sitios-viewport {
  width: 100%;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Track
--------------------------------------------------------------*/

.sitios-track {
  display: flex;
  width: 100%;
}


/*--------------------------------------------------------------
# Grupo
--------------------------------------------------------------*/

.sitios-grupo {
  min-width: 100%;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/*--------------------------------------------------------------
# Tarjeta
--------------------------------------------------------------*/

.sitio-card {
  position: relative;

  min-height: 230px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 28px 22px;

  background-color: var(--surface-color);

  border: 1px solid color-mix(in srgb,
      var(--default-color),
      transparent 88%);

  border-radius: 14px;

  text-decoration: none;

  overflow: hidden;

  box-shadow: 0 5px 18px rgba(56, 87, 35, 0.06);

  transition: all 0.3s ease;
}


/*--------------------------------------------------------------
# Línea verde superior
--------------------------------------------------------------*/

.sitio-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 45px;
  height: 3px;

  transform: translateX(-50%);

  background-color: var(--accent-color);

  border-radius: 0 0 5px 5px;

  transition: all 0.3s ease;
}


/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

.sitio-logo {
  width: 100%;
  height: 105px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}


.sitio-logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 82%;
  max-height: 95px;

  object-fit: contain;

  transition: transform 0.3s ease;
}


/*--------------------------------------------------------------
# Información
--------------------------------------------------------------*/

.sitio-info {
  width: 100%;

  display: flex;
  flex-direction: column;

  align-items: center;

  text-align: center;
}


.sitio-info strong {
  color: var(--heading-color);

  font-size: 17px;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 7px;
}


.sitio-info small {
  color: var(--default-color);

  font-size: 12px;

  line-height: 1.45;

  max-width: 245px;
}


/*--------------------------------------------------------------
# Hover
--------------------------------------------------------------*/

.sitio-card:hover {
  transform: translateY(-5px);

  border-color: color-mix(in srgb,
      var(--accent-color),
      transparent 65%);

  box-shadow: 0 12px 28px rgba(56, 87, 35, 0.12);
}


.sitio-card:hover::before {
  width: 70px;
}


.sitio-card:hover .sitio-logo img {
  transform: scale(1.06);
}


/*--------------------------------------------------------------
# Flechas
--------------------------------------------------------------*/

.sitios-flecha {
  position: absolute;

  top: 50%;

  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;

  border-radius: 50%;

  background-color: var(--accent-color);

  color: var(--contrast-color);

  cursor: pointer;

  transform: translateY(-50%);

  transition: all 0.3s ease;

  z-index: 5;
}


.sitios-flecha-prev {
  left: 5px;
}


.sitios-flecha-next {
  right: 5px;
}


.sitios-flecha:hover {
  background-color: var(--nav-hover-color);

  transform: translateY(-50%) scale(1.08);
}


.sitios-flecha i {
  font-size: 18px;

  line-height: 1;
}


/*--------------------------------------------------------------
# Indicadores
--------------------------------------------------------------*/

.sitios-indicadores {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 25px;
}


.sitios-indicadores button {
  width: 7px;
  height: 7px;

  padding: 0;
  margin: 0;

  border: none;

  border-radius: 50%;

  background-color: color-mix(in srgb,
      var(--accent-color),
      transparent 65%);

  cursor: pointer;

  transition: all 0.3s ease;
}


.sitios-indicadores button.activo {
  width: 20px;

  border-radius: 10px;

  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .sitios-carrusel {
    padding-left: 45px;
    padding-right: 45px;
  }

  .sitios-grupo {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .sitio-card {
    min-height: 220px;
  }

}


/*--------------------------------------------------------------
# Móvil
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .sitios-carrusel {
    padding-left: 38px;
    padding-right: 38px;
  }

  .sitios-grupo {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .sitio-card {
    min-height: 205px;

    padding: 24px 18px;
  }

  .sitio-logo {
    height: 85px;

    margin-bottom: 15px;
  }

  .sitio-logo img {
    max-height: 75px;
  }

  .sitio-info strong {
    font-size: 16px;
  }

  .sitio-info small {
    font-size: 12px;
    max-width: 280px;
  }

  .sitios-flecha {
    width: 34px;
    height: 34px;
  }

  .sitios-flecha i {
    font-size: 16px;
  }

  .sitios-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
  }

  .sitios-grupo {
    min-width: 100%;
    flex: 0 0 100%;
  }

}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-member .member-img {
  height:300px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

.team-member .member-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform 0.5s ease;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/* Título principal */
.section-title h2 {
  color: #315d24;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title h2 {
  text-transform: none !important;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto 45px;
  color: #5f665d;
  font-size: 16px;
  line-height: 1.7;
}


/* Subtítulo */
.subtitulo-historia {
  text-align: center;
  margin: 75px 0 40px;
}

.subtitulo-historia h3 {
  color: #315d24;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitulo-historia p {
  color: #6b7268;
  font-size: 16px;
}


/* Cargo */
.member-info .cargo {
  display: block;
  color: #315d24;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}


/* Animación de las fotos */
.team-member .member-img {
  overflow: hidden;
}

.team-member .member-img img {
  transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}