@charset "UTF-8";
/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
:root {
  --primary: #33523B;
  --primary-dark: #233A29;
  --primary-light: #4A6F52;
  --color-text: #3C3C3B;
  --color-text-muted: #6B6B6A;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F5F5;
  --color-border: #E5E5E4;
  --color-on-dark: #FFFFFF;
  --bg-dark: #FFFFFF;
  --surface: #F5F5F5;
  --surface-dark: #F5F5F5;
  --surface-alt: #EEEEEE;
  --surface-light: #FFFFFF;
  --card-dark: #FFFFFF;
  --bg-light: #F5F5F5;
  --border-light: #E5E5E4;
  --accent-green: #33523B;
  --background-dark: #FFFFFF;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #3C3C3B;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  width: 100%;
  flex-shrink: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
  background: #E5E5E4;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #33523B;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%) translateX(-50%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0) translateX(-50%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
}

.text-gradient {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #33523B, #4A6F52);
}

.text-green {
  color: #22c55e;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s ease;
}
.site-header .header-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #E5E5E4;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled .header-inner {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.site-header.scrolled .header-container {
  height: 4.5rem;
}

.header-mercado .header-inner {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #E5E5E4 !important;
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s ease;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.desktop-menu {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.primary-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-nav li {
  margin: 0;
}
.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3C3C3B;
  text-decoration: none;
  position: relative;
  transition: all 0.15s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.primary-nav a:hover {
  color: #33523B;
}
.primary-nav li.current-menu-item > a,
.primary-nav li.current_page_item > a {
  color: #33523B;
  font-weight: 700;
}
.primary-nav li.current-menu-item > a::after,
.primary-nav li.current_page_item > a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background-color: #33523B;
  box-shadow: 0 0 8px #33523B;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-login-btn {
  display: none !important;
}
@media (min-width: 1024px) {
  .header-login-btn {
    display: flex !important;
  }
}
.header-login-btn:hover {
  transform: scale(1.02);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #3C3C3B;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.mobile-menu-btn:hover {
  background: #F5F5F5;
}
.mobile-menu-btn .material-symbols-outlined {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header-container {
    height: 4.5rem;
    padding-inline: 1rem;
  }
  .logo-img {
    height: 38px;
  }
}
@media (max-width: 1023px) {
  .site-header.scrolled .header-container {
    height: 4rem;
  }
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #FFFFFF;
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.mobile-sidebar.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .mobile-sidebar {
    display: none;
  }
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #E5E5E4;
  flex-shrink: 0;
}

.sidebar-logo-link {
  display: flex;
  align-items: center;
}

.sidebar-logo-img {
  height: 40px;
  width: auto;
}

.sidebar-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #3C3C3B;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
}
.sidebar-close-btn:hover {
  background: #F5F5F5;
  color: #33523B;
}
.sidebar-close-btn .material-symbols-outlined {
  font-size: 1.5rem;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-nav-list li {
  margin: 0;
}
.sidebar-nav-list a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3C3C3B;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-left: 3px solid transparent;
  transition: all 0.15s ease-in-out;
}
.sidebar-nav-list a:hover {
  color: #33523B;
  background: rgba(51, 82, 59, 0.05);
  border-left-color: #33523B;
}
.sidebar-nav-list li.current-menu-item > a,
.sidebar-nav-list li.current_page_item > a {
  color: #33523B;
  font-weight: 700;
  background: rgba(51, 82, 59, 0.06);
  border-left-color: #33523B;
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid #E5E5E4;
  flex-shrink: 0;
  background: #F5F5F5;
}

.sidebar-contact-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B6B6A;
  margin: 0 0 0.75rem 0;
}

.sidebar-contact-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sidebar-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3C3C3B;
}
.sidebar-contact-list .material-symbols-outlined {
  font-size: 1.1rem;
  color: #33523B;
  flex-shrink: 0;
}
.sidebar-contact-list a {
  color: #3C3C3B;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.sidebar-contact-list a:hover {
  color: #33523B;
}

.sidebar-ig-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  color: #33523B;
  flex-shrink: 0;
}
.sidebar-ig-icon svg {
  width: 100%;
  height: 100%;
}

.sidebar-login-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

body.sidebar-open {
  overflow: hidden;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.site-footer {
  background-color: #33523B;
  border-top: 1px solid transparent;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1.25fr 1.5fr;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.75);
  transition: color all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-link:hover {
  color: #FFFFFF;
}
.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: #FFFFFF;
  font-weight: 700;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links li {
  margin: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color all 0.2s;
}
.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-icon {
  color: #FFFFFF;
  font-size: 1.125rem;
}

.footer-contact-info li:first-child .footer-icon {
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid #E5E5E4;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color all 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
  animation: kenburns 9s ease-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 64rem;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 2.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 7rem 1.5rem 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
  background-color: rgba(28, 56, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #33523B;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.hero-title span {
  color: var(--primary);
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
  text-decoration: none;
}
.hero-scroll-indicator .material-symbols-outlined {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}
.btn.btn-icon {
  gap: 0.5rem;
}
.btn.btn-icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.btn-primary {
  background-color: #33523B;
  color: var(--background-dark);
  padding: 1rem 2rem;
}
.btn-primary:hover {
  background-color: #233A29;
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  font-weight: 500;
}
.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-glass {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background-color all 0.2s;
  cursor: pointer;
}
.btn-outline-glass:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  padding: 1rem 2rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-outline:hover {
  background-color: #FFFFFF;
  color: var(--bg-dark);
}

.btn-white {
  background-color: #FFFFFF;
  color: #33523B;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 0.5rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color all 0.2s;
}
.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
}

.inst-btn-scale {
  transition: transform all 0.2s;
}
.inst-btn-scale:hover {
  transform: scale(1.05);
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form-field p {
  color: #3C3C3B;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 4px;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E4;
  color: #3C3C3B;
  padding: 0 1rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: #6B6B6A;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #33523B;
  box-shadow: 0 0 0 1px #33523B;
}
.form-field input,
.form-field select {
  height: 3rem;
}
.form-field textarea {
  min-height: 140px;
  padding: 1rem;
  resize: vertical;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  height: 3rem;
  background-color: rgba(51, 82, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0 1rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-group input:focus {
  border-color: #33523B;
  box-shadow: 0 0 0 1px #33523B;
}

.form-submit {
  padding-top: 0.5rem;
}
.form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #33523B;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  height: 3rem;
  padding: 0 2rem;
  transition: background-color all 0.2s;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-submit button:hover {
  background-color: #233A29;
}
@media (min-width: 768px) {
  .form-submit button {
    width: auto;
  }
}
.form-submit .material-symbols-outlined {
  margin-left: 0.5rem;
  font-size: 1.125rem;
}

.forgot-link {
  text-align: center;
  margin-top: 0.5rem;
}
.forgot-link a {
  font-size: 0.75rem;
  color: #6B6B6A;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color all 0.2s;
}
.forgot-link a:hover {
  color: #FFFFFF;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #E5E5E4;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: #3C3C3B;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 1rem;
}
.newsletter-input::placeholder {
  color: #6B6B6A;
}
.newsletter-input:focus {
  border-color: #33523B;
}

.newsletter-submit {
  background-color: #33523B;
  color: var(--background-dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.newsletter-submit:hover {
  background-color: #233A29;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-header-text {
  max-width: 42rem;
}

.section-subtitle {
  color: #33523B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  color: #6B6B6A;
  font-size: 1.125rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.625;
}

.section-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color all 0.2s;
  white-space: nowrap;
}
.section-link:hover {
  color: #33523B;
}
.section-link:hover .material-symbols-outlined {
  transform: translateX(0.25rem);
  transition: transform all 0.2s;
}

.sub-heading {
  color: #33523B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  margin: 0 0 0.75rem;
}

.main-heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .main-heading {
    font-size: 3rem;
  }
}

.header-desc {
  max-width: 28rem;
  margin: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .header-desc {
    text-align: right;
  }
}

.relative-z10 {
  position: relative;
  z-index: 10;
}

.inst-relative-z10 {
  position: relative;
  z-index: 10;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-item {
    align-items: flex-start;
    text-align: left;
  }
  .stat-item.stat-border {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}
.stat-value.highlight {
  color: #33523B;
}
.stat-value.text-white {
  color: #FFFFFF;
}

.stat-value-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6B6B6A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.stat-col {
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-col.border-none {
  border-right: none;
}
@media (max-width: 767px) {
  .stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
  }
  .stat-col:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.stat-val {
  font-size: 1.875rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.25rem;
}
@media (min-width: 768px) {
  .stat-val {
    font-size: 2.25rem;
  }
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.home-stats-strip {
  position: relative;
  z-index: 30;
  margin-top: -5rem;
  width: 100%;
  padding: 0 1.5rem;
  margin-bottom: 5rem;
  box-sizing: border-box;
}

.home-stats-container {
  max-width: 80rem;
  margin: 0 auto;
}

.home-stats-glass-panel {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .home-stats-glass-panel {
    padding: 2.5rem;
  }
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .home-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
  }
}

.home-services {
  padding: 5rem 0;
  background-color: var(--background-dark);
  position: relative;
}

.home-services-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background: radial-gradient(circle at 15% 50%, rgba(28, 56, 40, 0.4) 0%, transparent 50%);
}

.home-services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3) {
    grid-column: span 2;
  }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 3;
  }
}

.service-card {
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(51, 82, 59, 0.5);
  transform: translateY(-0.25rem);
}
.service-card {
  position: relative;
  background-color: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  pointer-events: none;
}
.service-card-bg-icon .material-symbols-outlined {
  font-size: 6rem;
  color: rgba(51, 82, 59, 0.08);
  transition: color all 0.3s;
}
.service-card:hover .service-card-bg-icon .material-symbols-outlined {
  color: rgba(51, 82, 59, 0.15);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(34, 197, 94, 0.3);
  margin-bottom: 1.5rem;
  color: #33523B;
  transition: all 0.3s;
}
.service-card:hover .service-card-icon {
  background-color: #33523B;
  color: var(--background-dark);
}
.service-card-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.75rem;
}

.service-card-desc {
  color: #6B6B6A;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  color: #33523B;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.service-card-link:hover {
  text-decoration: underline;
}

.home-client-access {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.client-access-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.client-access-overlay-color {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 185, 129, 0.9);
  z-index: 10;
  mix-blend-mode: multiply;
}

.client-access-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.client-access-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.4;
  pointer-events: none;
}

.client-access-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (min-width: 768px) {
  .client-access-container {
    flex-direction: row;
  }
}

.client-access-text-col {
  max-width: 42rem;
}

.client-access-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .client-access-title {
    font-size: 3rem;
  }
}

.client-access-desc {
  font-size: 1.25rem;
  color: #e5e7eb;
  font-weight: 300;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.client-access-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .client-access-features {
    flex-direction: row;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  color: #33523B;
  font-size: 1.875rem;
}

.feature-text {
  font-size: 0.875rem;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
}
.feature-text strong {
  color: #FFFFFF;
  font-weight: 700;
  display: block;
}

.client-access-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-community {
  padding: 6rem 0;
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.home-community-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background-color: rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.home-community-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.home-community-panel {
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .home-community-panel {
    padding: 4rem;
  }
}

.home-community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6rem;
  }
}

.newsletter-col {
  max-width: 36rem;
}

.newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .newsletter-title {
    font-size: 2.25rem;
  }
}

.newsletter-desc {
  color: #3C3C3B;
  font-size: 1.125rem;
  margin: 0 0 2rem;
  line-height: 1.625;
}

.whatsapp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .whatsapp-col {
    align-items: flex-end;
  }
}

.whatsapp-community-card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #E5E5E4;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 100%;
  width: 100%;
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}

.whatsapp-community-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.whatsapp-community-icon svg {
  width: 2rem;
  height: 2rem;
}

.whatsapp-community-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.5rem;
}

.whatsapp-community-desc {
  color: #3C3C3B;
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}

.whatsapp-community-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}
.whatsapp-community-link:hover {
  background-color: #20ba5a;
}
.whatsapp-community-link .material-symbols-outlined {
  font-size: 0.875rem;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.contacto-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contacto-hero {
  min-height: unset;
  align-items: flex-start;
  background-color: #F5F5F4;
  padding: 6.5rem 1.5rem 3rem;
}
@media (min-width: 768px) {
  .contacto-hero {
    padding: 11rem 1.5rem;
  }
}

.contacto-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(51, 82, 59, 0.2) 1px, transparent 0);
  background-size: 32px 32px;
}

.contacto-hero-content {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contacto-hero-content {
    flex-direction: row;
    align-items: flex-end;
  }
}

.contacto-hero-text {
  max-width: 42rem;
}

.contacto-hero-subtitle {
  color: #33523B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.contacto-hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #3C3C3B;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.contacto-hero-title span {
  color: #33523B;
}
@media (min-width: 640px) {
  .contacto-hero-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .contacto-hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .contacto-hero-title {
    font-size: 3.75rem;
  }
}

.contacto-hero-desc {
  color: #6B6B6A;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 36rem;
  margin: 0;
}

.contacto-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
  text-decoration: none;
}
.contacto-scroll-indicator .material-symbols-outlined {
  color: #6B6B6A;
  font-size: 2.5rem;
}

.contacto-layout {
  width: 100%;
  padding: 0 1.5rem 5rem;
  display: flex;
  justify-content: center;
}

.contacto-grid {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contacto-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.contacto-form-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contacto-form-col {
    grid-column: span 7/span 7;
  }
}

.contacto-form-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.375rem;
  border: 1px solid #E5E5E4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.contacto-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 1.5rem;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacto-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .contacto-info-col {
    grid-column: span 5/span 5;
  }
}

.whatsapp-card {
  background: linear-gradient(to bottom right, #25D366, #128C7E);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform all 0.2s;
  cursor: pointer;
}
.whatsapp-card:hover {
  transform: translateY(-4px);
}

.whatsapp-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
}
.whatsapp-card-inner h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}
.whatsapp-card-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

.whatsapp-icon {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: 9999px;
  display: flex;
  transition: background-color all 0.2s;
}
.whatsapp-card:hover .whatsapp-icon {
  background-color: rgba(255, 255, 255, 0.3);
}
.whatsapp-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background-color: #FFFFFF;
  padding: 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid #E5E5E4;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card-icon {
  background-color: #F5F5F5;
  padding: 0.5rem;
  border-radius: 4px;
  color: #33523B;
  flex-shrink: 0;
  display: flex;
}

.info-card h4 {
  color: #3C3C3B;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}
.info-card p {
  color: #6B6B6A;
  font-size: 0.875rem;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.625;
}
.info-card a {
  color: #33523B;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
  transition: color all 0.2s;
  word-break: break-all;
  margin-bottom: 0.2rem;
}
.info-card a:hover {
  color: #233A29;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 16rem;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid #E5E5E4;
  min-height: 250px;
}
@media (min-width: 1024px) {
  .map-embed {
    height: 100%;
  }
}

.map-container {
  position: absolute;
  inset: 0;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: filter 0.5s;
  display: block;
}
.map-container:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.map-action {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.map-action button {
  background-color: #33523B;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color all 0.2s;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.map-action button:hover {
  background-color: #233A29;
}
.map-action .material-symbols-outlined {
  font-size: 0.875rem;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.serv-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
@media (min-width: 640px) {
  .serv-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .serv-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.font-body {
  line-height: 1.625;
}

.group-link:hover .icon-slide-right {
  transform: translateX(0.25rem);
}

.icon-slide-right {
  transition: transform all 0.2s;
}

.w-full-sm {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .w-full-sm {
    width: auto;
  }
}

.serv-stats-strip {
  background-color: var(--bg-dark);
  border-bottom: 1px solid #E5E5E4;
  position: relative;
  z-index: 20;
}
.serv-stats-strip .py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.serv-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .serv-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.serv-services-section {
  padding: 6rem 0;
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.serv-services-dec {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(to left, rgba(28, 56, 40, 0.2), transparent);
  pointer-events: none;
}

.serv-services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .serv-services-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.serv-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .serv-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.serv-card {
  transition: all 0.3s;
}
.serv-card:hover {
  border-color: rgba(51, 82, 59, 0.5);
  transform: translateY(-0.25rem);
}
.serv-card {
  background-color: var(--surface-dark);
  border: 1px solid #E5E5E4;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.serv-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  pointer-events: none;
}
.serv-card-bg-icon .material-symbols-outlined {
  font-size: 6rem;
  color: rgba(51, 82, 59, 0.08);
  transition: color all 0.3s;
}
.serv-card:hover .serv-card-bg-icon .material-symbols-outlined {
  color: rgba(51, 82, 59, 0.15);
}

.serv-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(34, 197, 94, 0.3);
  color: #33523B;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.serv-card:hover .serv-card-icon {
  background-color: #33523B;
  color: var(--background-dark);
}

.serv-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.75rem;
}

.serv-card-desc {
  color: #6B6B6A;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.5rem;
}

.serv-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.serv-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B6B6A;
}
.serv-card-list .material-symbols-outlined {
  font-size: 1rem;
  color: #33523B;
}

.serv-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #33523B;
  text-decoration: none;
  transition: color all 0.2s;
}
.serv-card-link:hover {
  color: #233A29;
}
.serv-card-link .material-symbols-outlined {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.serv-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-family: monospace;
  color: #33523B;
}

.serv-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.box-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.25rem;
}

.box-val {
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.serv-tech-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  position: relative;
}

.tech-panel {
  background: linear-gradient(to right, #33523B, #2a4a35);
  border-radius: 1.5rem;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .tech-panel {
    padding: 4rem;
  }
}

.tech-dec-circle {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(51, 82, 59, 0.2);
  border-radius: 9999px;
  filter: blur(40px);
}

.tech-overlay-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.tech-content-flex {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .tech-content-flex {
    flex-direction: row;
  }
}

.tech-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tech-text-col h2 {
  font-size: 1.875rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 768px) {
  .tech-text-col h2 {
    font-size: 2.25rem;
  }
}
.tech-text-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin: 0;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tech-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #33523B;
  color: #33523B;
  display: flex;
}
.check-icon .material-symbols-outlined {
  font-size: 0.875rem;
  font-weight: 700;
}

.tech-visual-col {
  flex: 1;
  width: 100%;
  max-width: 24rem;
  display: flex;
  justify-content: center;
}

.device-mockup {
  position: relative;
  margin: 0 auto;
  background-color: #1f2937;
  border: 8px solid #1f2937;
  border-radius: 2.5rem;
  height: 31.25rem;
  width: 17.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.dev-btn {
  position: absolute;
  background-color: #1f2937;
  width: 3px;
  border-radius: 3px 0 0 3px;
}
.dev-btn.btn-1 {
  height: 32px;
  top: 72px;
  left: -11px;
}
.dev-btn.btn-2 {
  height: 46px;
  top: 124px;
  left: -11px;
}
.dev-btn.btn-3 {
  height: 46px;
  top: 178px;
  left: -11px;
}
.dev-btn.right {
  right: -11px;
  left: auto;
  border-radius: 0 3px 3px 0;
}
.dev-btn.btn-4 {
  height: 64px;
  top: 142px;
}

.device-screen {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.device-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

.device-ui {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 56, 40, 0.8);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: #FFFFFF;
}

.ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ui-header span:first-child {
  font-weight: 700;
}

.ui-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
}

.ui-label {
  font-size: 0.75rem;
  margin: 0 0 0.25rem;
  opacity: 0.7;
}

.ui-val {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.ui-bar-bg {
  height: 0.5rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.ui-bar-fill {
  height: 100%;
  background-color: #33523B;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.ui-home-indicator {
  display: flex;
  justify-content: center;
}

.mt-auto {
  margin-top: auto;
}

.indicator-bar {
  width: 3rem;
  height: 0.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.space-y-3 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.opacity-70 {
  opacity: 0.7;
}

.group:hover .icon-arrow-down {
  transform: translateY(0.25rem);
}

.icon-arrow-down {
  transition: transform all 0.2s;
  font-size: 1.125rem;
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.inst-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
@media (min-width: 640px) {
  .inst-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .inst-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.inst-subtitle {
  color: #33523B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.inst-stats-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inst-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .inst-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.inst-stat-card {
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color all 0.3s;
}
.inst-stat-card:hover {
  border-color: rgba(51, 82, 59, 0.5);
}
.inst-stat-card:hover .inst-stat-icon {
  background-color: #33523B;
}
.inst-stat-card:hover .inst-stat-icon .material-symbols-outlined {
  color: #F5F5F5;
}

.inst-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(51, 82, 59, 0.2);
  margin-bottom: 1rem;
  transition: background-color all 0.3s;
}
.inst-stat-icon .material-symbols-outlined {
  color: #33523B;
  font-size: 1.5rem;
  transition: color all 0.3s;
}

.inst-stat-val {
  font-size: 2.25rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.25rem;
}

.inst-stat-label {
  color: #6B6B6A;
  font-weight: 500;
  margin: 0;
}

.inst-mission-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.inst-mission-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background-color: rgba(28, 56, 40, 0.1);
  transform: skewX(12deg) translateX(8rem);
  filter: blur(40px);
}

.inst-mission-flex {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .inst-mission-flex {
    flex-direction: row;
  }
}

.inst-mission-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .inst-mission-content {
    width: 50%;
  }
}

.inst-mission-header h2 {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 1.5rem;
}
.inst-mission-header p {
  color: #6B6B6A;
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0;
}

.inst-mission-card {
  transition: all 0.3s;
}
.inst-mission-card:hover {
  border-color: rgba(51, 82, 59, 0.5);
  transform: translateY(-0.25rem);
}
.inst-mission-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #F5F5F5;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.inst-mission-card-icon-wrapper {
  flex-shrink: 0;
}

.inst-mission-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(51, 82, 59, 0.15);
  border: 1px solid rgba(51, 82, 59, 0.2);
  transition: all 0.3s;
}
.inst-mission-card-icon .material-symbols-outlined {
  color: #33523B;
  font-size: 1.5rem;
  transition: color all 0.3s;
}
.inst-mission-card:hover .inst-mission-card-icon {
  background-color: #33523B;
}
.inst-mission-card:hover .inst-mission-card-icon .material-symbols-outlined {
  color: #FFFFFF;
}

.inst-mission-card-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.5rem;
}
.inst-mission-card-text p {
  color: #6B6B6A;
  margin: 0;
  line-height: 1.5;
}

.inst-mission-visual {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .inst-mission-visual {
    width: 50%;
  }
}

.inst-mission-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.inst-mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inst-mission-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent, transparent);
  opacity: 0.8;
}

.inst-mission-floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid #E5E5E4;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.flex-align {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.flex-align h4 {
  color: #3C3C3B;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  margin: 0 0 0.25rem;
}
.flex-align p {
  color: #6B6B6A;
  font-size: 0.875rem;
  margin: 0;
}

.inst-mission-dec-1 {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(51, 82, 59, 0.2);
  border-radius: 9999px;
}

.inst-mission-dec-2 {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
}

.inst-timeline-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}

.inst-timeline-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .inst-timeline-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .inst-timeline-container {
    padding: 0 2rem;
  }
}

.inst-timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}
.inst-timeline-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0.5rem 0 0;
}

.inst-timeline {
  position: relative;
}

.inst-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(51, 82, 59, 0.3), transparent);
}

.inst-timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  width: 100%;
}
.inst-timeline-row:last-child {
  margin-bottom: 0;
}

.inst-timeline-col {
  width: 41.666667%;
  box-sizing: border-box;
}
.inst-timeline-col.pr-8 {
  padding-right: 2rem;
}
.inst-timeline-col.pl-8 {
  padding-left: 2rem;
}
.inst-timeline-col.text-right {
  text-align: right;
}
.inst-timeline-col h3 {
  color: #3C3C3B;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.inst-timeline-col .highlight {
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.inst-timeline-col .text-primary {
  color: #33523B;
}
.inst-timeline-col .text-secondary-gold {
  color: #695130;
}
.inst-timeline-col .desc {
  color: #6B6B6A;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.inst-timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #F5F5F5;
  border: 4px solid #695130;
  z-index: 10;
}
.inst-timeline-marker.marker-active {
  border-color: #33523B;
  box-shadow: 0 10px 15px -3px rgba(51, 82, 59, 0.2);
}
.inst-timeline-marker .material-symbols-outlined {
  font-size: 1.25rem;
}

.text-gray {
  color: #6B6B6A;
}

.inst-values-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.inst-values-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .inst-values-header {
    flex-direction: row;
  }
}
.inst-values-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 0.5rem;
}
.inst-values-header p {
  color: #6B6B6A;
  margin: 0;
}

.inst-values-link {
  color: #33523B;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color all 0.2s;
}
.inst-values-link:hover {
  color: #FFFFFF;
}
.inst-values-link .material-symbols-outlined {
  font-size: 1.125rem;
  transition: transform all 0.2s;
}
.inst-values-link:hover .material-symbols-outlined {
  transform: translateX(0.25rem);
}

.inst-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .inst-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  transition: all 0.3s;
}
.value-card:hover {
  border-color: rgba(51, 82, 59, 0.5);
  transform: translateY(-0.25rem);
}
.value-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--surface-dark);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  opacity: 0.1;
  transition: opacity all 0.3s;
  pointer-events: none;
}
.value-card:hover .value-card-bg-icon {
  opacity: 0.2;
}
.value-card-bg-icon .material-symbols-outlined {
  font-size: 6rem;
  color: #FFFFFF;
}

.value-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(34, 197, 94, 0.3);
  margin-bottom: 1.5rem;
  color: #33523B;
  transition: all 0.3s;
}
.value-card:hover .value-card-icon {
  background-color: #33523B;
  color: var(--background-dark);
}
.value-card-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.value-card h3 {
  color: #3C3C3B;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.value-card p {
  color: #6B6B6A;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.inst-cta-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
  border-top: 1px solid #E5E5E4;
}

.inst-cta-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.inst-cta-container h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3C3C3B;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .inst-cta-container h2 {
    font-size: 3rem;
  }
}
.inst-cta-container p {
  font-size: 1.25rem;
  color: #6B6B6A;
  margin: 0 0 2.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.hidden-md {
  display: none;
}
@media (min-width: 768px) {
  .hidden-md {
    display: block;
  }
}

.inst-cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .inst-cta-buttons {
    flex-direction: row;
  }
}

/*
Theme Name: Cerealera Naveyra Theme
Theme URI: https://vanguardiacode.com
Author: vanguardiaCode
Author URI: https://vanguardiacode.com
Description: Un tema básico para Cerealera Naveyra, creado por vanguardiaCode.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cerealera-naveyra-theme
*/
.rrhh-contact h1,
.rrhh-contact h2,
.rrhh-contact h3,
.rrhh-contact h4,
.rrhh-contact p,
.rrhh-vacancies h1,
.rrhh-vacancies h2,
.rrhh-vacancies h3,
.rrhh-vacancies h4,
.rrhh-vacancies p {
  margin: 0;
  padding: 0;
}

.rrhh-hero {
  min-height: 100vh;
}

.rrhh-essence {
  padding: 5rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .rrhh-essence {
    padding: 5rem;
  }
}

.rrhh-essence-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .rrhh-essence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rrhh-essence-label {
  color: #33523B;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.rrhh-essence-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #3C3C3B;
}
@media (min-width: 768px) {
  .rrhh-essence-title {
    font-size: 2.25rem;
  }
}

.rrhh-essence-desc {
  color: #6B6B6A;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.rrhh-essence-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rrhh-essence-features .service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}
.rrhh-essence-features .service-card .service-card-bg-icon {
  display: none;
}
.rrhh-essence-features .service-card .service-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(51, 82, 59, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0;
  color: #33523B;
  transition: all 0.3s;
}
.rrhh-essence-features .service-card .service-card-icon span {
  font-size: 1.25rem !important;
}
.rrhh-essence-features .service-card:hover .service-card-icon {
  background-color: #33523B;
  color: #FFFFFF;
}
.rrhh-essence-features .service-card .service-card-body {
  display: flex;
  flex-direction: column;
}
.rrhh-essence-features .service-card .service-card-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.rrhh-essence-features .service-card .service-card-desc {
  font-size: 0.875rem;
  margin: 0;
}

.rrhh-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 154, 25, 0.1);
  background-color: rgba(245, 154, 25, 0.1);
}

.rrhh-feature-icon {
  color: #33523B;
  font-size: 1.875rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rrhh-feature-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #3C3C3B;
  margin: 0 0 0.25rem;
}

.rrhh-feature-text {
  color: #6B6B6A;
  font-size: 0.875rem;
  margin: 0;
}

.rrhh-essence-img-wrapper {
  position: relative;
}

.rrhh-essence-img-glow {
  position: absolute;
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
  background-color: rgba(245, 154, 25, 0.2);
  border-radius: 0.75rem;
  filter: blur(24px);
  opacity: 0.5;
  transition: opacity all 0.3s;
}
.rrhh-essence-img-wrapper:hover .rrhh-essence-img-glow {
  opacity: 0.7;
}

.rrhh-essence-img {
  position: relative;
  border-radius: 0.75rem;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgba(245, 154, 25, 0.2);
}

.rrhh-benefits {
  background-color: rgba(245, 154, 25, 0.1);
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) {
  .rrhh-benefits {
    padding: 5rem;
  }
}

.rrhh-benefits-container {
  max-width: 80rem;
  margin: 0 auto;
}

.rrhh-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rrhh-benefits-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
}

.rrhh-benefits-subtitle {
  color: #6B6B6A;
  margin-top: 0.5rem;
}

.rrhh-benefits-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .rrhh-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .rrhh-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rrhh-benefit-card {
  background-color: var(--bg-dark);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 154, 25, 0.1);
  transition: border-color all 0.3s;
}
.rrhh-benefit-card:hover {
  border-color: rgba(245, 154, 25, 0.3);
}

.rrhh-benefit-icon {
  color: #33523B;
  font-size: 2.25rem !important;
  margin-bottom: 1rem;
}

.rrhh-benefit-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3C3C3B;
}

.rrhh-benefit-desc {
  color: #6B6B6A;
  font-size: 0.875rem;
}

.rrhh-vacancies {
  padding: 5rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .rrhh-vacancies {
    padding: 5rem;
  }
}

.rrhh-vacancies-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .rrhh-vacancies-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.rrhh-vacancies-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
}

.rrhh-vacancies-subtitle {
  color: #6B6B6A;
  margin-top: 0.5rem;
}

.rrhh-vacancies-tags {
  display: flex;
  gap: 0.5rem;
}

.rrhh-vacancy-tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(245, 154, 25, 0.1);
  border: 1px solid rgba(245, 154, 25, 0.3);
  color: #33523B;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rrhh-vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rrhh-vacancy-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background-color: rgba(245, 154, 25, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 154, 25, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.rrhh-vacancy-card:hover {
  background-color: rgba(245, 154, 25, 0.1);
}

.rrhh-vacancy-card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .rrhh-vacancy-card-header {
    flex-direction: row;
    align-items: center;
  }
}

.rrhh-vacancy-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3B;
  transition: color all 0.3s;
}
.rrhh-vacancy-card:hover .rrhh-vacancy-title {
  color: #33523B;
}

.rrhh-vacancy-meta {
  color: #6B6B6A;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.rrhh-vacancy-icon-wrapper {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rrhh-vacancy-icon-wrapper {
    margin-top: 0;
  }
}

.rrhh-vacancy-icon {
  color: #6B6B6A;
  transition: transform all 0.3s;
}
.rrhh-vacancy-card.active .rrhh-vacancy-icon {
  transform: rotate(180deg);
}

.rrhh-vacancy-card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s;
  visibility: hidden;
}
.rrhh-vacancy-card.active .rrhh-vacancy-card-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 154, 25, 0.1);
  visibility: visible;
}

.rrhh-vacancy-desc {
  color: #6B6B6A;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.rrhh-vacancy-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  height: 2.5rem;
  padding: 0 1.5rem;
  background-color: #33523B;
  color: var(--bg-dark);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 15px;
}
.rrhh-vacancy-apply-btn:hover {
  box-shadow: 0 4px 6px -1px rgba(245, 154, 25, 0.2);
}

.rrhh-contact {
  padding: 5rem 1.5rem;
  background-color: #F5F5F5;
}
@media (min-width: 1024px) {
  .rrhh-contact {
    padding: 5rem;
  }
}

.rrhh-contact-card {
  max-width: 48rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(245, 154, 25, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .rrhh-contact-card {
    padding: 3rem;
  }
}

.rrhh-contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rrhh-contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3C3C3B;
}

.rrhh-contact-subtitle {
  color: #6B6B6A;
  margin-top: 0.5rem;
}

.rrhh-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rrhh-contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .rrhh-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rrhh-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rrhh-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3C3C3B;
  display: block;
}

.rrhh-form-input,
.rrhh-form-select {
  width: 100%;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E4;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #3C3C3B;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 1rem;
}
.rrhh-form-input:focus,
.rrhh-form-select:focus {
  box-shadow: 0 0 0 2px #33523B;
  border-color: transparent;
}

.rrhh-form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%2333523B'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem;
}

.rrhh-file-upload {
  position: relative;
  border: 2px dashed rgba(245, 154, 25, 0.3);
  border-radius: 0.75rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  background-color: rgba(245, 154, 25, 0.02);
}
.rrhh-file-upload:hover {
  background-color: rgba(245, 154, 25, 0.05);
  border-color: #33523B;
}

.rrhh-file-icon {
  color: #33523B;
  font-size: 2.25rem !important;
  margin-bottom: 0.5rem;
}

.rrhh-file-text {
  font-size: 0.875rem;
  color: #6B6B6A;
}

.rrhh-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.rrhh-submit-btn {
  width: 100%;
  background-color: #33523B;
  color: var(--bg-dark);
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.rrhh-submit-btn:hover {
  filter: brightness(1.1);
}
.rrhh-submit-btn:active {
  transform: scale(0.98);
}

/*# sourceMappingURL=style.css.map */
