body {
    font-family: 'Clash Grotesk', sans-serif!important;
}

b, strong {
  font-weight: 500!important;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px!important;
  }
}

.font-primary,
.font-clash {
    font-family: 'Clash Grotesk', sans-serif!important;
}

.font-secondary,
.font-bebas {
    font-family: 'Bebas Neue', sans-serif!important;
}

.arrow-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.hover-arrow:hover .arrow-icon {
    transform: translateX(4px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.2s linear;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.fade-out {
  animation: fadeOut 0.2s ease-in-out forwards;
}


.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Slider */

.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0,0,0,0.1); transition: .4s; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .4s; }
input:checked + .slider { background-color: #25d366; }
input:focus + .slider { box-shadow: 0 0 1px var(--color-green-300); }
input:checked + .slider:before { transform: translateX(18px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }
@-webkit-keyframes rotateKeyframes { 100% { transform: rotate(360deg); } }
@keyframes rotateKeyframes { 100% { transform: rotate(360deg); } }
@-webkit-keyframes bounceKeyframes { 0%, 100% { transform: scale(0); } 50% { transform: scale(1); } }
@keyframes bounceKeyframes { 0%, 100% { transform: scale(0); } 50% { transform: scale(1); } }

/* Loader */

.loader { width: 40px; height: 40px; position: relative; animation: rotateKeyframes 2s linear infinite; }
.loader .dot1, .loader .dot2 { width: 60%; height: 60%; position: absolute; background-color: #FFF055; border-radius: 50%; animation: bounceKeyframes 2s ease-in-out infinite; }
.loader .dot1 { top: 0; }
.loader .dot2 { bottom: 0; animation-delay: -1s; }
@keyframes rotateKeyframes { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounceKeyframes { 0%, 100% { transform: scale(0); } 50% { transform: scale(0.75); } }

/* Scale transform */ 

.scale-01 { transform: scale(0.1)!important; }
.scale-02 { transform: scale(0.2)!important; }
.scale-03 { transform: scale(0.3)!important; }
.scale-04 { transform: scale(0.4)!important; }
.scale-05 { transform: scale(0.5)!important; }
.scale-06 { transform: scale(0.6)!important; }
.scale-07 { transform: scale(0.7)!important; }
.scale-08 { transform: scale(0.8)!important; }
.scale-09 { transform: scale(0.9)!important; }
.scale-10 { transform: scale(1.05)!important; }
.scale-11 { transform: scale(1.1)!important; }
.scale-12 { transform: scale(1.2)!important; }

/* Button Custom */

button.btn,
a.btn {
background-color: transparent;
font-family: inherit;
padding: 0.6em 1.3em;
font-weight: 600;
font-size: 18px;
border: 3px solid var(--color-dark-600);
border-radius: 0.4em;
box-shadow: 0.1em 0.1em;
cursor: pointer;
}

.btn.btn-success {
    background-color: var(--color-green-300)!important;
    border-color: var(--color-green-600)!important;
}

button.btn:hover,
a.btn:hover { transform: translate(-0.05em, -0.05em); box-shadow: 0.15em 0.15em; -webkit-transform: translate(-0.05em, -0.05em); -moz-transform: translate(-0.05em, -0.05em); -ms-transform: translate(-0.05em, -0.05em); -o-transform: translate(-0.05em, -0.05em);
}

button.btn:active,
a.btn:active { transform: translate(0.05em, 0.05em); box-shadow: 0.05em 0.05em; -webkit-transform: translate(0.05em, 0.05em); -moz-transform: translate(0.05em, 0.05em); -ms-transform: translate(0.05em, 0.05em); -o-transform: translate(0.05em, 0.05em);
}
 
/* Hourglass */

.hourglassBackground { position: relative; background-color: var(--color-brown-700); height: 130px; width: 130px; border-radius: 50%; margin: 30px auto; }
.hourglassContainer { position: absolute; top: 30px; left: 40px; width: 50px; height: 70px; -webkit-animation: hourglassRotate 4s ease-in 0s infinite; animation: hourglassRotate 4s ease-in 0s infinite; transform-style: preserve-3d; perspective: 1000px; }
.hourglassContainer div, .hourglassContainer div:before, .hourglassContainer div:after { transform-style: preserve-3d; }
.hourglassCapTop { top: 0; }
.hourglassCapTop:before { top: -25px; }
.hourglassCapTop:after { top: -20px; }
.hourglassCapBottom { bottom: 0; }
.hourglassCapBottom:before { bottom: -25px; }
.hourglassCapBottom:after { bottom: -20px; }
.hourglassGlassTop { transform: rotateX(90deg); position: absolute; top: -16px; left: 3px; width: 44px; height: 44px; background-color: #999999; border-radius: 50%; }
.hourglassGlass { perspective: 100px; position: absolute; top: 32px; left: 20px; width: 10px; height: 6px; background-color: #999999; opacity: 0.5; }
.hourglassGlass:before, .hourglassGlass:after { content: ''; display: block; position: absolute; background-color: #999999; left: -17px; width: 44px; height: 28px; }
.hourglassGlass:before { top: -27px; border-radius: 0 0 25px 25px; }
.hourglassGlass:after { bottom: -27px; border-radius: 25px 25px 0 0; }
.hourglassCurves:before, .hourglassCurves:after { content: ''; display: block; position: absolute; top: 32px; width: 6px; height: 6px; border-radius: 50%; background-color: var(--color-brown-700); animation: hideCurves 4s ease-in 0s infinite; -webkit-animation: hideCurves 4s ease-in 0s infinite; }
.hourglassCurves:before { left: 15px; }
.hourglassCurves:after { left: 29px; }
.hourglassSandStream:before { content: ''; display: block; position: absolute; left: 24px; width: 3px; background-color: var(--color-golden-400); -webkit-animation: sandStream1 4s ease-in 0s infinite; animation: sandStream1 4s ease-in 0s infinite; }
.hourglassSandStream:after { content: ''; display: block; position: absolute; top: 36px; left: 19px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid var(--color-golden-400); animation: sandStream2 4s ease-in 0s infinite; -webkit-animation: sandStream2 4s ease-in 0s infinite; }
.hourglassSand:before, .hourglassSand:after { content: ''; display: block; position: absolute; left: 6px; background-color: var(--color-golden-400); perspective: 500px; }
.hourglassSand:before { top: 8px; width: 39px; border-radius: 3px 3px 30px 30px; animation: sandFillup 4s ease-in 0s infinite; -webkit-animation: sandFillup 4s ease-in 0s infinite; }
.hourglassSand:after { border-radius: 30px 30px 3px 3px; animation: sandDeplete 4s ease-in 0s infinite; -webkit-animation: sandDeplete 4s ease-in 0s infinite; }

@-webkit-keyframes hourglassRotate { 0% { transform: rotateX(0deg); } 50% { transform: rotateX(180deg); } 100% { transform: rotateX(180deg); } }
@keyframes hourglassRotate { 0% { transform: rotateX(0deg); } 50% { transform: rotateX(180deg); } 100% { transform: rotateX(180deg); } }

@-webkit-keyframes hideCurves { 0%,25%,30% { opacity: 0; } 40%,100% { opacity: 1; } }
@keyframes hideCurves { 0%,25%,30% { opacity: 0; } 40%,100% { opacity: 1; } }

@-webkit-keyframes sandStream1 { 0% { height: 0; top: 35px; } 50% { height: 0; top: 45px; } 60%,85% { height: 35px; top: 8px; } 100% { height: 0; top: 8px; } }
@keyframes sandStream1 { 0% { height: 0; top: 35px; } 50% { height: 0; top: 45px; } 60%,85% { height: 35px; top: 8px; } 100% { height: 0; top: 8px; } }

@-webkit-keyframes sandStream2 { 0%,50% { opacity: 0; } 51%,90%,91% { opacity: 1; } 100% { opacity: 0; } }
@keyframes sandStream2 { 0%,50% { opacity: 0; } 51%,90%,91% { opacity: 1; } 100% { opacity: 0; } }

@-webkit-keyframes sandFillup { 0% { opacity: 0; height: 0; } 60%,100% { opacity: 1; height: 17px; } }
@keyframes sandFillup { 0% { opacity: 0; height: 0; } 60%,100% { opacity: 1; height: 17px; } }

@-webkit-keyframes sandDeplete { 0%,1%,24% { opacity: 1; top: 45px; height: 17px; width: 38px; left: 6px; } 25%,50% { top: 41px; } 100% { top: 41px; height: 0; width: 10px; left: 20px; } }
@keyframes sandDeplete { 0%,1%,24% { opacity: 1; top: 45px; height: 17px; width: 38px; left: 6px; } 25%,50% { top: 41px; } 100% { top: 41px; height: 0; width: 10px; left: 20px; } }

/* About Us */

.hover-arrow-icon { transition: transform 0.3s ease; }
.hover-arrow:hover .hover-arrow-icon { transform: translateX(5px); }
.timeline-container { max-width: 100%; overflow: hidden; position: relative; margin: 0 auto; }
.timeline-items { display: flex; transition: transform 0.5s ease-in-out; }
.timeline-slide { min-width: 100%; padding: 0 2rem; display: flex; flex-direction: column; align-items: center; }
.timeline-year { margin-bottom: 2rem; position: relative; }
.timeline-year::after { content: ''; position: absolute; height: 2px; background-color: var(--color-yellow-300); top: 50%; left: -200px; right: -200px; z-index: -1; }
.year-bubble { background-color: var(--color-yellow-500); color: white; font-family: "Bebas Neue", sans-serif; width: 180px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; position: relative; z-index: 1; }
.timeline-content { text-align: center; max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }
.timeline-nav { display: flex; justify-content: center; align-items: center; margin-top: 3rem; gap: 1rem; }
.nav-btn { background: transparent; border: none; cursor: pointer; padding: 0.5rem; color: var(--color-dark-600); transition: color 0.2s; }
.nav-btn:hover { color: var(--color-dark-900); }
.nav-dots { display: flex; gap: 0.5rem; }
.nav-dot { width: 10px; height: 10px; border-radius: 50%; background-color: var(--color-nature-300); border: none; cursor: pointer; transition: transform 0.2s, background-color 0.2s; }
.nav-dot.active { background-color: var(--color-yellow-500); transform: scale(1.3); }
.dotted-map-container { position: relative; width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-container { position: relative; width: 100%; padding: 1rem 0; }
.marquee-content { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-content:hover { animation-play-state: paused; }
.badge-item { margin-right: 1rem; }
.animation-paused { animation-play-state: paused; }

.mega-crops-panel {
  border-radius: 40px;
  min-height: 260px;
}

header nav li > a {
  display: inline-block;
}
header nav li.current_page_item > a,
header nav li.current-menu-item > a,
header nav li.current-menu-ancestor > a {
  position: relative;
  font-weight: 500;
}

header nav li > a:hover {
  position: relative;
}

header nav li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;              
  left: 50%;                
  width: 50px;              
  height: 3px;              
  background-color: yellow;
  border-radius: 6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

header nav li > a:hover::after,
header nav li.current_page_item > a::after,
header nav li.current-menu-item > a::after,
header nav li.current-menu-ancestor > a::after {
  transform: translateX(-50%) scaleX(1);
}

header nav ul ul li > a::after {
  display: none;
}

.content-dropdown > li {
  background: rgba(255,255,255,0.9);
  border-radius: 50px;
  margin-bottom: 4px;
  padding-left: 8px!important;
  font-size: 16px;
}

.menu-hamburger {
  background-color: transparent;
  font-family: inherit;
  padding: 0.5rem 0.85rem 0.6rem 1rem;
  font-weight: 600;
  border: 3px solid var(--color-dark-600);
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.hamburger {
  display: inline-block;
}

.hamburger .bar:nth-child(1) { transform: translateY(-6px); }
.hamburger .bar:nth-child(2) { /* permanece en centro */ }
.hamburger .bar:nth-child(3) { transform: translateY(6px); }

.hamburger.open .bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.hamburger .bar {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Page Article */

.entry-content {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.4;
  padding-bottom: 5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  font-family: "Clash Grotesk", sans-serif;
  margin-top: 2em;
  margin-bottom: 0.75em;
  font-weight: 600;
  line-height: 1.2;
}

.entry-content h2 {
  font-size: 2rem;
}

.entry-content h3 {
  font-size: 1.75rem;
}

.entry-content h4 {
  font-size: 1.5rem;
}

.entry-content h5 {
  font-size: 1.25rem;
}

.entry-content p {
  font-size: 1.125rem;
  margin: 0.3em 0 1em 0;
}

.entry-content strong {
  font-weight: 600!important;
}

.entry-content em {
  font-style: italic;
}

.entry-content mark {
  background: var(--bg-yellow-100);
}

.entry-content ul,
.entry-content ol {
  font-size: 1.125rem;
  margin: 1em 0 1em 1.5em;
  padding: 0;
}

.entry-content ul li {
  list-style-type: disc;
  margin: 0.5em 0;
}

.entry-content ol li {
  list-style-type: decimal;
  margin: 0.5em 0;
}

.entry-content a {
  color: #15803d;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.entry-content a:hover {
  color: #166534;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 0.25em;
}

.entry-content pre {
  background: #1e1e1e;
  color: #f5f5f5;
  padding: 1em;
  overflow: auto;
  border-radius: 0.375em;
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  margin: 1.5em 0;
}

.entry-content code {
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 0.25em;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.75em 1em;
  text-align: left;
}
.entry-content th {
  background: #f9fafb;
  font-weight: 600;
}

.entry-content blockquote {
  margin: 1.5em 2em;
  padding: 0.75em 1em;
  border-left: 4px solid #d1d5db;
  background: #f9fafb;
  font-style: italic;
  color: #555;
}

.entry-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2em 0;
}

#toc-list a {
  transition: color 0.2s ease;
}
#toc-list a.active {
  color: theme('colors.green.600');
}


/* Crops  */ 

.crop-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}
.crop-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.radio-pill.active {
  border-color: #059669;      /* verde-600 */
  background-color: #DCFCE7;  /* green-50 */
  color: #065F46;             /* green-800 */
}

.checkbox-toggle.active {
  opacity: 1;
  font-weight: 500;
}
.checkbox-toggle.active .check-icon {
  opacity: 1;
}
.checkbox-toggle .check-icon {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Flymily */

.hover-arrow-icon { transition: transform 0.3s ease; }
.hover-arrow:hover .hover-arrow-icon { transform: translateX(5px); }

/* Masonry Gallery */
.masonry-gallery { columns: 1; column-gap: 1.5rem; }
.masonry-item { break-inside: avoid; transition: transform 0.3s ease; }
.masonry-item:hover { transform: scale(1.02); }

@media (min-width: 768px) {
  .masonry-gallery { columns: 2; }
}
@media (min-width: 1024px) {
  .masonry-gallery { columns: 3; }
}
  
/* --- Font Definitions --- */
/* @font-face rules removed, fonts will be enqueued via functions.php */
/* --- End Font Definitions --- */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(80 141 193 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(80 141 193 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}
