* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #2B2B2B;
  line-height: 1.6;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2B2B2B;
  line-height: 1.2;
}

p, span, li, a {
  font-family: "Inter", sans-serif;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

.hero-title {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.section-title {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.text-primary {
  color: #F5A623;
}

.text-secondary {
  color: #8B5E3C;
}

.text-accent {
  color: #F5A623;
}

.text-muted {
  color: #717182;
}

.text-dark {
  color: #2B2B2B;
}

.text-white {
  color: #FFFFFF;
}

.text-black {
  color: #000;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.fill-white {
  fill: #fff;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

@media (min-width: 640px) {
  .sm-flex-row {
    flex-direction: row;
  }
}
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .lg-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg-grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

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

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

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-12 {
  margin-top: 3rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.site-main {
  min-height: 50vh;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-neutral {
  background-color: #F7F3EF;
}

.bg-primary {
  background-color: #F5A623;
}

.bg-secondary {
  background-color: #8B5E3C;
}

.bg-dark {
  background-color: #2B2B2B;
}

.bg-success {
  background-color: #6BA368;
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-white {
  color: #FFFFFF;
}

.text-dark {
  color: #2B2B2B;
}

.text-primary {
  color: #F5A623;
}

.text-secondary {
  color: #8B5E3C;
}

.text-success {
  color: #6BA368;
}

.text-muted {
  color: rgba(43, 43, 43, 0.7);
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.2;
}

.rounded-md {
  border-radius: 0.4rem;
}

.rounded-lg {
  border-radius: 0.625rem;
}

.rounded-xl {
  border-radius: 0.875rem;
}

.rounded-2xl {
  border-radius: 1.5rem;
}

.rounded-3xl {
  border-radius: 2rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.border-4 {
  border-width: 4px;
}

.border-gray-200 {
  border: 1px solid #E5E7EB;
}

.border-primary {
  border-color: #F5A623;
}

.border-secondary {
  border-color: #8B5E3C;
}

.border-white {
  border-color: #FFFFFF;
}

.border-opacity-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-t {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-y {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-lift {
  transition: transform 0.3s, box-shadow 0.3s;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .lg-block {
    display: block !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 0.9375rem;
}
.btn.btn-primary {
  background-color: #F5A623;
  color: #FFFFFF;
  border-color: #F5A623;
}
.btn.btn-primary:hover {
  background-color: #e09615;
  border-color: #e09615;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #8B5E3C;
  color: #8B5E3C;
}
.btn.btn-outline:hover {
  background-color: #8B5E3C;
  color: #FFFFFF;
}
.btn.btn-white-outline {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.btn.btn-white-outline:hover {
  background-color: #FFFFFF;
  color: #2B2B2B;
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}
.btn.btn-shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.aspect-square {
  aspect-ratio: 1/1;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.aspect-showcase {
  aspect-ratio: 4/5;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.pointer-events-none {
  pointer-events: none;
}

.transition-all {
  transition: all 0.3s ease;
}

.duration-500 {
  transition-duration: 500ms;
}

.group:hover .group-hover-scale-110 {
  transform: scale(1.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  font-size: 1rem;
  line-height: 1.5rem;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn.btn-primary {
  background-color: #F5A623;
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(245, 166, 35, 0.2), 0 2px 4px -1px rgba(245, 166, 35, 0.1);
}
.btn.btn-primary:hover {
  background-color: #e09615;
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.3), 0 4px 6px -2px rgba(245, 166, 35, 0.2);
}
.btn.btn-secondary {
  background-color: #8B5E3C;
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(139, 94, 60, 0.2), 0 2px 4px -1px rgba(139, 94, 60, 0.1);
}
.btn.btn-secondary:hover {
  background-color: #6d4a2e;
  box-shadow: 0 10px 15px -3px rgba(139, 94, 60, 0.3), 0 4px 6px -2px rgba(139, 94, 60, 0.2);
}
.btn.btn-outline {
  border-color: #8B5E3C;
  color: #8B5E3C;
}
.btn.btn-outline:hover {
  background-color: #8B5E3C;
  color: #FFFFFF;
}
.btn.btn-white {
  background-color: #FFFFFF;
  color: #2B2B2B;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn.btn-white:hover {
  background-color: #F9FAFB;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn.btn-glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn.btn-whatsapp:hover {
  background-color: rgb(33.1955645161, 189.3044354839, 91.5120967742);
}

.top-bar {
  background-color: #8B5E3C;
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}
.top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .top-bar-right {
  display: flex;
  gap: 1.5rem;
  display: none;
}
@media (min-width: 1024px) {
  .top-bar .top-bar-right {
    display: flex;
  }
}
.top-bar .top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.top-bar .top-bar-link:hover {
  opacity: 1;
}
.top-bar .top-bar-link .icon-small {
  width: 1rem;
  height: 1rem;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.site-header .site-branding .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8B5E3C;
}
.site-header .site-branding .logo-text .logo-highlight {
  color: #F5A623;
}
.site-header .site-branding .site-logo {
  height: 48px;
  width: auto;
}
@media (max-width: 1023px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation .nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation .nav-menu li a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #2B2B2B;
  transition: color 0.2s;
  padding: 0.5rem 0;
  position: relative;
}
.site-header .main-navigation .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F5A623;
  transition: width 0.3s;
}
.site-header .main-navigation .nav-menu li a:hover {
  color: #F5A623;
}
.site-header .main-navigation .nav-menu li a:hover::after {
  width: 100%;
}
.site-header .main-navigation .nav-menu li.current-menu-item a {
  color: #F5A623;
}
.site-header .main-navigation .nav-menu li.current-menu-item a::after {
  width: 100%;
}
.site-header .header-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .site-header .header-actions {
    display: flex;
  }
}
.site-header .header-actions .icon-small {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.site-header .menu-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #8B5E3C;
}
@media (min-width: 1024px) {
  .site-header .menu-toggle {
    display: none;
  }
}
.site-header .menu-toggle .icon-menu, .site-header .menu-toggle .icon-close {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  background-color: #FFFFFF;
  border-top: 1px solid #F3F4F6;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}
.mobile-menu .mobile-nav-menu li a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #2B2B2B;
}
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu .mobile-actions .btn {
  width: 100%;
  height: 3.5rem;
  justify-content: center;
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #F3F4F6;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 0.75rem;
}
@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}
.mobile-bottom-bar .bottom-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mobile-bottom-bar .bottom-bar-grid .btn {
  height: 3rem;
  font-size: 0.875rem;
  justify-content: center;
}

.site-footer {
  background-color: #030213;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  font-family: "Inter", sans-serif;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer .footer-col .footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
.site-footer .footer-col .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-col .footer-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-col .footer-list li a:hover {
  color: #FFFFFF;
}
.site-footer .footer-info .footer-logo {
  margin-bottom: 1.5rem;
}
.site-footer .footer-info .footer-logo .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.site-footer .footer-info .footer-logo .logo-text .logo-highlight {
  color: #F5A623;
}
.site-footer .footer-info .footer-logo .footer-logo-img {
  height: 48px;
  width: auto;
}
.site-footer .footer-info .footer-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.site-footer .footer-info .footer-social {
  display: flex;
  gap: 1rem;
}
.site-footer .footer-info .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 0.3s;
}
.site-footer .footer-info .footer-social .social-link:hover {
  background-color: #F5A623;
  transform: translateY(-3px);
}
.site-footer .footer-info .footer-social .social-link .icon-social {
  width: 1.25rem;
  height: 1.25rem;
}
.site-footer .footer-contacts .contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-contacts .contacts-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.site-footer .footer-contacts .contacts-list .contact-item .icon-contact {
  width: 1.25rem;
  height: 1.25rem;
  color: #F5A623;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.site-footer .footer-contacts .contacts-list .contact-item a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-contacts .contacts-list .contact-item a:hover {
  color: #FFFFFF;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer .footer-bottom .footer-legal {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-bottom .footer-legal a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-bottom .footer-legal a:hover {
  color: #FFFFFF;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float .icon-whatsapp {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 5rem;
  }
}

.cta-section {
  padding: 4rem 0;
  text-align: center;
}
.cta-section.cta-dark {
  background-color: #8B5E3C;
  color: #FFFFFF;
}
.cta-section.cta-dark h2, .cta-section.cta-dark p {
  color: #FFFFFF;
}
.cta-section.cta-dark .btn-outline {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.cta-section.cta-dark .btn-outline:hover {
  background-color: #FFFFFF;
  color: #8B5E3C;
}
.cta-section.cta-light {
  background-color: #F7F3EF;
}
.cta-section h2 {
  margin-bottom: 1rem;
}
.cta-section .cta-subtitle {
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-section .cta-buttons {
    flex-direction: row;
  }
}

.feature-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .feature-card {
    text-align: left;
  }
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-card .card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 166, 35, 0.1);
  border-radius: 0.875rem;
  margin-bottom: 1.5rem;
  color: #8B5E3C;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .feature-card .card-icon {
    margin-left: 0;
    margin-right: auto;
  }
}
.feature-card .card-icon svg {
  width: 32px;
  height: 32px;
}
.feature-card.variant-accent {
  background-color: #F5A623;
  color: #FFFFFF;
}
.feature-card.variant-accent h3, .feature-card.variant-accent p {
  color: #FFFFFF;
}
.feature-card.variant-accent .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}
.product-card .product-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card .product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(245, 166, 35, 0.2), transparent);
}
.product-card:hover .product-img img {
  transform: scale(1.1);
}
.product-card .product-content {
  padding: 1.5rem;
}
.product-card .product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.product-card .product-content p {
  margin-bottom: 1.5rem;
}
.product-card .product-features {
  margin-bottom: 1.5rem;
}
.product-card .product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(43, 43, 43, 0.8);
  margin-bottom: 0.5rem;
}

.form-container {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .form-container {
    padding: 3rem;
  }
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2B2B2B;
}

input, textarea, select, .form-control {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  background-color: #F3F4F6;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
input:focus, textarea:focus, select:focus, .form-control:focus {
  background-color: #FFFFFF;
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

textarea {
  height: auto;
  padding: 1rem;
  resize: none;
}

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

form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .whatsapp-button {
    bottom: 30px;
  }
}
.whatsapp-button:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}
.whatsapp-button svg {
  width: 32px;
  height: 32px;
}

.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.product-modal-overlay .modal-container {
  background-color: white;
  width: 95%;
  max-width: 1100px;
  max-height: 90vh;
  position: relative;
  border-radius: 1.5rem;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 3rem;
}
@media (min-width: 768px) {
  .product-modal-overlay .modal-container {
    padding: 4rem;
  }
}
.product-modal-overlay .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #2B2B2B;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1;
}
.product-modal-overlay .modal-close:hover {
  color: #F5A623;
}
.product-modal-overlay .modal-body-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .product-modal-overlay .modal-body-wrapper {
    grid-template-columns: 1.2fr 1fr;
  }
}
.product-modal-overlay .modal-main-image {
  width: 100%;
  border-radius: 0.875rem;
  overflow: hidden;
  background-color: #F7F3EF;
  margin-bottom: 1.5rem;
}
.product-modal-overlay .modal-main-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.product-modal-overlay .modal-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.product-modal-overlay .modal-thumbs img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0.4rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.product-modal-overlay .modal-thumbs img.active {
  border-color: #F5A623;
}
.product-modal-overlay .modal-features-list {
  margin-bottom: 2rem;
}
.product-modal-overlay .modal-features-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-modal-overlay .modal-features-list ul li {
  background-color: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.product-modal-overlay .modal-description-text {
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.7;
}

.cf7-custom-form, .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cf7-custom-form .form-grid, .cf7-custom-form .grid-2, .wpcf7-form .form-grid, .wpcf7-form .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cf7-custom-form .form-grid, .cf7-custom-form .grid-2, .wpcf7-form .form-grid, .wpcf7-form .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cf7-custom-form .form-group, .cf7-custom-form .wpcf7-form-control-wrap, .wpcf7-form .form-group, .wpcf7-form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cf7-custom-form .form-group label, .cf7-custom-form .wpcf7-form-control-wrap label, .wpcf7-form .form-group label, .wpcf7-form .wpcf7-form-control-wrap label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2B2B2B;
  margin-bottom: 0;
  display: block;
}
.cf7-custom-form input[type=text],
.cf7-custom-form input[type=email],
.cf7-custom-form input[type=tel],
.cf7-custom-form input[type=number],
.cf7-custom-form textarea,
.cf7-custom-form select,
.cf7-custom-form .wpcf7-text,
.cf7-custom-form .wpcf7-textarea,
.cf7-custom-form .wpcf7-select, .wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=number],
.wpcf7-form textarea,
.wpcf7-form select,
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100% !important;
  height: 3.5rem;
  padding: 0 1rem !important;
  border-radius: 0.625rem !important;
  border: 1px solid #D1D5DB !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  background-color: #FFFFFF !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
  color: #2B2B2B !important;
}
.cf7-custom-form input[type=text]:focus,
.cf7-custom-form input[type=email]:focus,
.cf7-custom-form input[type=tel]:focus,
.cf7-custom-form input[type=number]:focus,
.cf7-custom-form textarea:focus,
.cf7-custom-form select:focus,
.cf7-custom-form .wpcf7-text:focus,
.cf7-custom-form .wpcf7-textarea:focus,
.cf7-custom-form .wpcf7-select:focus, .wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=number]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-select:focus {
  border-color: #F5A623 !important;
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.1) !important;
}
.cf7-custom-form input[type=text]::placeholder,
.cf7-custom-form input[type=email]::placeholder,
.cf7-custom-form input[type=tel]::placeholder,
.cf7-custom-form input[type=number]::placeholder,
.cf7-custom-form textarea::placeholder,
.cf7-custom-form select::placeholder,
.cf7-custom-form .wpcf7-text::placeholder,
.cf7-custom-form .wpcf7-textarea::placeholder,
.cf7-custom-form .wpcf7-select::placeholder, .wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form input[type=number]::placeholder,
.wpcf7-form textarea::placeholder,
.wpcf7-form select::placeholder,
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder,
.wpcf7-form .wpcf7-select::placeholder {
  color: rgba(43, 43, 43, 0.4) !important;
}
.cf7-custom-form textarea, .cf7-custom-form .wpcf7-textarea, .wpcf7-form textarea, .wpcf7-form .wpcf7-textarea {
  height: auto !important;
  padding: 1rem !important;
  min-height: 120px !important;
}
.cf7-custom-form select, .cf7-custom-form .wpcf7-select, .wpcf7-form select, .wpcf7-form .wpcf7-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem !important;
}
.cf7-custom-form .btn-submit, .cf7-custom-form .wpcf7-submit, .wpcf7-form .btn-submit, .wpcf7-form .wpcf7-submit {
  width: 100% !important;
  height: 3.5rem !important;
  background-color: #F5A623 !important;
  color: #FFFFFF !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  border-radius: 0.625rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: none !important;
}
.cf7-custom-form .btn-submit:hover, .cf7-custom-form .wpcf7-submit:hover, .wpcf7-form .btn-submit:hover, .wpcf7-form .wpcf7-submit:hover {
  background-color: #e09615 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.cf7-custom-form .btn-submit:active, .cf7-custom-form .wpcf7-submit:active, .wpcf7-form .btn-submit:active, .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0) !important;
}

.supply-form input[type=text],
.supply-form input[type=email],
.supply-form input[type=tel],
.supply-form textarea,
.supply-form select {
  background-color: #F7F3EF;
  border-color: transparent;
}
.supply-form input[type=text]:focus,
.supply-form input[type=email]:focus,
.supply-form input[type=tel]:focus,
.supply-form textarea:focus,
.supply-form select:focus {
  background-color: #FFFFFF;
  border-color: #F5A623;
}
.supply-form .wpcf7-form-control-wrap {
  margin-bottom: 0 !important;
  display: block;
}
.supply-form .form-section {
  margin-bottom: 1rem;
}
.supply-form .form-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
}
.supply-form .form-section .section-title .step-num {
  background-color: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.supply-form br {
  display: none !important;
}
.supply-form p {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .col-span-2 {
    grid-column: span 2;
  }
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #6BA368 !important;
  background-color: rgba(107, 163, 104, 0.1) !important;
  color: #3d5d3b !important;
  margin: 1rem 0 0 !important;
}
.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.failed .wpcf7-response-output, .wpcf7-form.aborted .wpcf7-response-output {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.1) !important;
  color: #991b1b !important;
  margin: 1rem 0 0 !important;
}

.bg-gradient-hero {
  background: linear-gradient(135deg, #F7F3EF 0%, #ffffff 50%, #F7F3EF 100%);
  position: relative;
  overflow: hidden;
}

.decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.decor-blob.decor-top {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(245, 166, 35, 0.08);
}
.decor-blob.decor-bottom {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(139, 94, 60, 0.08);
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-image-wrapper .img-container {
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-image-wrapper .img-container img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-image-wrapper .img-container img {
    height: 550px;
    aspect-ratio: auto;
  }
}

.floating-card {
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-card .card-inner {
  background: white;
  border-radius: 0.875rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.floating-card.card-rating .card-inner {
  background: #F5A623;
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
}

@media (min-width: 0) and (max-width: 767px) {
  .home-partners .partners-grid {
    gap: 2rem;
    justify-content: center;
  }
}

.quote-form-home .form-group {
  text-align: left;
}

.sector-card {
  background-color: #F7F3EF;
  padding: 1.5rem;
  border-radius: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sector-card .sector-icon-frame {
  transition: all 0.3s ease;
}
.sector-card:hover {
  background-color: rgba(245, 166, 35, 0.1);
  transform: translateY(-5px);
}
.sector-card:hover .sector-icon-frame {
  background-color: #F5A623;
  color: #FFFFFF;
}

.showcase-item .gradient-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(43, 43, 43, 0.1) 40%, rgba(43, 43, 43, 0.8) 100%);
  transition: opacity 0.3s ease;
}
.showcase-item:hover .showcase-img {
  transform: scale(1.1);
}

.product-card-home .product-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.differential-card {
  background-color: #F7F3EF;
  border-radius: 0.875rem;
}
.differential-card .diff-icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-line {
  position: absolute;
  top: 3.5rem;
  left: 20%;
  right: 20%;
  height: 2px;
  background-color: rgba(245, 166, 35, 0.2);
  z-index: 1;
}
.process-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 66.6%;
  height: 100%;
  background-color: #F5A623;
}

.certification-banner {
  background: linear-gradient(135deg, #6d4a2e 0%, #8B5E3C 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.certification-banner::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner {
  background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cta-banner .btn-white-outline {
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
}
.cta-banner .btn-white-outline:hover {
  background: #FFFFFF;
  color: #2B2B2B;
}

.bg-gradient-about-hero {
  background: linear-gradient(135deg, #F7F3EF 0%, #ffffff 100%);
}

.badge-about {
  display: inline-block;
  background-color: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.bg-gradient-mission {
  background: linear-gradient(135deg, #F5A623 0%, #e09615 100%);
}

.bg-gradient-vision {
  background: linear-gradient(135deg, #8B5E3C 0%, #6d4a2e 100%);
}

.bg-gradient-values {
  background: linear-gradient(135deg, #6BA368 0%, #578654 100%);
}

.mvv-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mvv-card:hover {
  transform: translateY(-8px);
}

.history-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-card-about {
  border-radius: 0.875rem;
  padding: 2rem;
  background: white;
  transition: all 0.3s;
}
.feature-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.products-main .product-img-col {
  height: 450px;
}
.products-main .product-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-main .sub-grid .bg-light {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.products-main .sub-grid .bg-light:hover {
  transform: scale(1.05);
}

.how-we-supply .supply-card .icon-circle-lg {
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.1);
}

.gallery-item-action {
  aspect-ratio: 1/1;
}
.gallery-item-action:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.supply-page .supply-hero {
  background: linear-gradient(135deg, #F7F3EF 0%, #ffffff 100%);
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .supply-page .supply-hero {
    padding: 6rem 0;
  }
}
.supply-page .supply-hero .supply-badge {
  display: inline-block;
  background-color: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}
.supply-page .supply-hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .supply-page .supply-hero .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .supply-page .supply-hero .hero-title {
    font-size: 4rem;
  }
}
.supply-page .supply-hero .hero-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  max-width: 45rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.supply-page .supply-hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .supply-page .supply-hero .hero-actions {
    flex-direction: row;
  }
}
.supply-page .supply-hero .hero-actions .btn-secondary-outline {
  border-color: #8B5E3C;
  color: #8B5E3C;
}
.supply-page .supply-hero .hero-actions .btn-secondary-outline:hover {
  background-color: #8B5E3C;
  color: #FFFFFF;
}
.supply-page .supply-hero .icon-btn {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.supply-page .supply-sectors {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.supply-page .supply-sectors .sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .supply-page .supply-sectors .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .supply-page .supply-sectors .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.supply-page .supply-sectors .sector-card {
  background-color: #F7F3EF;
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s;
}
.supply-page .supply-sectors .sector-card:hover {
  transform: translateY(-5px);
  background-color: rgba(245, 166, 35, 0.1);
}
.supply-page .supply-sectors .sector-card .icon-frame {
  background-color: #FFFFFF;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #8B5E3C;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.supply-page .supply-sectors .sector-card .icon-frame .sector-icon {
  width: 1.75rem;
  height: 1.75rem;
}
.supply-page .supply-sectors .sector-card .card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2B2B2B;
  margin-bottom: 1rem;
}
.supply-page .supply-sectors .sector-card .card-desc {
  font-family: "Inter", sans-serif;
  color: rgba(43, 43, 43, 0.6);
  line-height: 1.6;
}
.supply-page .supply-sectors .sector-card:hover .icon-frame {
  background-color: #F5A623;
  color: #FFFFFF;
}
.supply-page .supply-process {
  padding: 6rem 0;
  background-color: #F7F3EF;
}
.supply-page .supply-process .process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .supply-page .supply-process .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .supply-page .supply-process .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.supply-page .supply-process .process-step .step-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.supply-page .supply-process .process-step .step-card .icon-circle {
  background-color: #F5A623;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.3);
  position: relative;
  z-index: 10;
}
.supply-page .supply-process .process-step .step-card .icon-circle .step-icon {
  width: 2rem;
  height: 2rem;
}
.supply-page .supply-process .process-step .step-card .step-num-bg {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.05);
  line-height: 1;
  z-index: 1;
}
.supply-page .supply-process .process-step .step-card .card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #2B2B2B;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 10;
}
.supply-page .supply-process .process-step .step-card .card-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: rgba(43, 43, 43, 0.6);
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
.supply-page .supply-advantages {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.supply-page .supply-advantages .advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .supply-page .supply-advantages .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .supply-page .supply-advantages .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.supply-page .supply-advantages .advantage-card {
  background-color: #F7F3EF;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-align: center;
}
.supply-page .supply-advantages .advantage-card:hover {
  transform: scale(1.03);
  border-color: #F5A623;
}
.supply-page .supply-advantages .advantage-card .icon-frame {
  background-color: rgba(245, 166, 35, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #F5A623;
}
.supply-page .supply-advantages .advantage-card .icon-frame .advantage-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.supply-page .supply-advantages .advantage-card .card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #2B2B2B;
  margin-bottom: 0.75rem;
}
.supply-page .supply-advantages .advantage-card .card-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(43, 43, 43, 0.6);
  font-style: italic;
}
.supply-page .supply-advantages .stats-banner {
  background-color: #F7F3EF;
  padding: 3rem;
  border-radius: 2rem;
}
.supply-page .supply-advantages .stats-banner .banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .supply-page .supply-advantages .stats-banner .banner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.supply-page .supply-advantages .stats-banner .stat-value {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F5A623;
  margin-bottom: 0.5rem;
}
.supply-page .supply-advantages .stats-banner .stat-label {
  font-family: "Inter", sans-serif;
  color: rgba(43, 43, 43, 0.6);
}
.supply-page .supply-form {
  padding: 6rem 0;
  background-color: #F7F3EF;
}
.supply-page .supply-form .form-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.supply-page .supply-form .form-wrapper .quote-form .form-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.supply-page .supply-form .form-wrapper .quote-form .form-section:last-of-type {
  border-bottom: none;
}
.supply-page .supply-form .form-wrapper .quote-form .form-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 1.5rem;
}
.supply-page .supply-form .form-wrapper .quote-form .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .supply-page .supply-form .form-wrapper .quote-form .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.supply-page .supply-form .form-wrapper .quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group.last {
  margin-bottom: 2.5rem;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2B2B2B;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-input, .supply-page .supply-form .form-wrapper .quote-form .form-group .form-select {
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-input:focus, .supply-page .supply-form .form-wrapper .quote-form .form-group .form-select:focus {
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
  outline: none;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-textarea {
  padding: 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.4rem;
  font-family: "Inter", sans-serif;
  resize: none;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-textarea:focus {
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
  outline: none;
}
.supply-page .supply-form .form-wrapper .quote-form .form-group .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232B2B2B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}
.supply-page .supply-form .form-wrapper .quote-form .btn-block {
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  justify-content: center;
}
.supply-page .supply-form .form-wrapper .quote-form .form-note {
  text-align: center;
  color: rgba(43, 43, 43, 0.5);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1rem;
  font-family: "Inter", sans-serif;
}
.supply-page .supply-cta {
  padding: 6rem 0;
}
.supply-page .supply-cta .cta-banner {
  background-color: #030213;
  padding: 4rem;
  border-radius: 2rem;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}
.supply-page .supply-cta .cta-banner .cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.supply-page .supply-cta .cta-banner .cta-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.supply-page .supply-cta .cta-banner .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .supply-page .supply-cta .cta-banner .cta-actions {
    flex-direction: row;
  }
}
.supply-page .supply-cta .cta-banner .cta-actions .btn-white-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.supply-page .supply-cta .cta-banner .cta-actions .btn-white-outline:hover {
  background-color: #FFFFFF;
  color: #8B5E3C;
}
.supply-page .supply-cta .icon-btn {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.bg-gradient-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #20ba5a;
}

.card-contact-gradient {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.card-contact-gradient .icon-sq {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-container-box {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}
.form-container-box .form-control {
  border: 1px solid transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-container-box .form-control:focus {
  border-color: #F5A623;
}

.faq-item-card {
  border: 1px solid rgba(245, 166, 35, 0.05);
  transition: border-color 0.2s;
}
.faq-item-card:hover {
  border-color: #F5A623;
}

.map-embed-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

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