.elementor-7 .elementor-element.elementor-element-f105640{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-24eac00{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-fd748a1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-7 .elementor-element.elementor-element-f04bbf8{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-6971c4c *//* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Added Google Fonts import for brand-matching typography */
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Updated brand colors based on logo */
  --brand-brown: #6b4423;
  --brand-cream: #f4e6d9;
  --brand-light-brown: #8b5a3c;
  --brand-dark-brown: #4a2f1a;
  --brand-accent: #d4a574;

  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Updated font variables to match brand style */
  --font-display: "Caveat", cursive;
  --font-brand: "Kalam", cursive;
  --font-body: "Arial", sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  /* Added max-width and width constraints to prevent horizontal overflow */
  max-width: 100vw;
  width: 100%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(107, 68, 35, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Added width constraints to prevent horizontal overflow */
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Enhanced width constraints and prevented flex overflow */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 80px;
  overflow: hidden;
}

.logo-img {
  height: 60px !important;
  width: auto;
  flex-shrink: 0;
}

.logo-img:hover {
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-shrink: 0;
  /* Added flex-wrap and max-width to prevent overflow */
  flex-wrap: nowrap;
  max-width: calc(100% - 80px); /* Account for logo space */
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-lg);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Added hover effects for header buttons */
.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link:active {
}

.contact-btn {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-light-brown));
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--brand-light-brown), var(--brand-brown));
  box-shadow: 0 8px 25px rgba(107, 68, 35, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Added width constraint to prevent horizontal overflow */
  width: 100%;
  max-width: 100vw;
}

.hero-background-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Added overflow hidden to prevent collage images from extending beyond viewport */
  overflow: hidden;
}

.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(107, 68, 35, 0.7) 0%,
    rgba(244, 230, 217, 0.3) 50%,
    rgba(107, 68, 35, 0.8) 100%
  );
  z-index: 2;
}

/* Simplified collage layout with only 6 images for cleaner look */
/* Reorganized collage layout for better visual balance */
/* Left side images - staggered vertical arrangement */
.collage-image {
  position: absolute;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) rotate(5deg);
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.collage-left-1 {
  top: 5%;
  left: 5%;
  width: 220px;
  height: 270px;
  transform: rotate(-12deg);
}

.collage-left-2 {
  top: 43%;
  left: 3.9%;
  width: 220px;
  height: 270px;
  transform: rotate(-8deg);
}

.collage-left-3 {
  top: 23%;
  left: 16%;
  width: 220px;
  height: 270px;
  transform: rotate(-18deg);
  z-index: 2;
}

.collage-left-4 {
  bottom: 10%;
  left: 14%;
  width: 230px;
  height: 270px;
  transform: rotate(-6deg);
}

/* Right side images - mirrored staggered arrangement */
.collage-right-1 {
  top: 5%;
  right: 5%;
  width: 220px;
  height: 260px;
  transform: rotate(15deg);
}

.collage-right-2 {
  top: 39%;
  right: 3%;
  width: 220px;
  height: 270px;
  transform: rotate(10deg);
  z-index: 2;
}

.collage-right-3 {
  top: 20%;
  right: 15%;
  width: 210px;
  height: 270px;
  transform: rotate(20deg);
}

.collage-right-4 {
  bottom: 12%;
  right: 12%;
  width: 230px;
  height: 270px;
  transform: rotate(8deg);
}

.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.collage-image:hover img {
  transform: scale(1.1);
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Added width constraint and box-sizing */
  width: 100%;
  box-sizing: border-box;
}

.hero-content-center {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
  max-width: 800px;
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
  /* Better alignment with scroll indicator */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand-matching typography for main title */
.brand-typography {
  font-family: var(--font-brand) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-title-center {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #6b4423;
}

.title-line {
  display: block;
}

.highlight {
  background: #d4a574;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: bolder;
}

.hero-description-center {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b4423;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons-center {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Enhanced button designs */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 200px;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-brown), var(--brand-light-brown));
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-light-brown), var(--brand-accent));
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 68, 35, 0.4);
}

.btn-secondary {
  background: rgba(244, 230, 217, 0.9);
  color: var(--brand-brown);
  border: 2px solid var(--brand-cream);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--brand-cream);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 35px rgba(244, 230, 217, 0.4);
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Moved scroll indicator to bottom center */
/* Improved scroll indicator centering */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  z-index: 4;
}

.scroll-indicator.centered-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  z-index: 4;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(244, 230, 217, 0.1);
  backdrop-filter: blur(10px);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Animations */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 1428px) {
  /* Added laptop/tablet breakpoint for better scaling */
  .collage-image {
    /* Reduced image sizes for better mobile visibility */
    width: 160px !important;
    height: 200px !important;
  }

  .collage-left-1 {
    top: 6%;
    left: 4%;

  }
  .collage-left-2 {
    top: 40%;
    left: 2%;
  }
  .collage-left-3 {
    top: 24%;
    left: 12%;
  }
  .collage-left-4 {
    bottom: 15%;
    left: 8%;
  }

  .collage-right-1 {
    top: 6%;
    right: 4%;
  }
  .collage-right-2 {
    top: 38%;
    right: 2%;
  }
  .collage-right-3 {
    top: 22%;
    right: 10%;
  }
  .collage-right-4 {
    bottom: 12%;
    right: 6%;
  }

  .hero-title-center {
    /* Reduced font size for better readability */
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .hero-description-center {
    /* Reduced description font size */
    font-size: 1rem;
  }

  .nav-container {
    padding: 0.75rem 1.5rem;
    min-height: 70px;
    max-width: 100%;
  }

  .nav-menu {
    gap: 1.2rem;
    max-width: calc(100% - 60px);
  }

  .nav-link {
    padding: 0.6rem 1rem; /* Reduced padding to save space */
    font-size: 0.9rem;
  }

  .logo-img {
    height: 50px !important;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .collage-image {
    /* Further reduced image sizes */
    width: 140px !important;
    height: 180px !important;
  }

  .collage-left-1,
  .collage-left-2,
  .collage-left-3,
  .collage-left-4 {
    left: 2%;
  }

  .collage-right-1,
  .collage-right-2,
  .collage-right-3,
  .collage-right-4 {
    right: 2%;
  }

  .nav-container {
    padding: 0.7rem 1.25rem;
    width: 100%;
    max-width: 100vw;
  }

  .nav-menu {
    gap: 1rem; /* Further reduced gap for medium tablets */
    max-width: calc(100% - 55px);
  }

  .nav-link {
    /* Smaller padding and font for better fit */
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  /* Improved mobile menu and hero content spacing */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--brand-brown), var(--brand-dark-brown));
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-normal);
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 2;
  }

  .nav-container {
    padding: 0.5rem 1rem;
    min-height: 60px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-buttons-center {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Better mobile collage positioning to prevent overlap */
  .collage-image {
    /* Significantly reduced image sizes for mobile */
    width: 110px !important;
    height: 140px !important;
  }

  .collage-left-1 {
    top: 8%;
    left: 1%;
    transform: rotate(-8deg);
  }
  .collage-left-2 {
    top: 40%;
    left: 0%;
    transform: rotate(-5deg);
  }
  .collage-left-3 {
    top: 25%;
    left: 6%;
    transform: rotate(-12deg);
  }
  .collage-left-4 {
    bottom: 25%;
    left: 2%;
    transform: rotate(-4deg);
  }

  .collage-right-1 {
    top: 6%;
    right: 1%;
    transform: rotate(10deg);
  }
  .collage-right-2 {
    top: 38%;
    right: 0%;
    transform: rotate(8deg);
  }
  .collage-right-3 {
    top: 23%;
    right: 5%;
    transform: rotate(15deg);
  }
  .collage-right-4 {
    bottom: 23%;
    right: 2%;
    transform: rotate(6deg);
  }

  /* Better hero content responsive sizing */
  .hero-content-center {
    /* Increased padding and better width management */
    padding: 2rem 1rem;
    max-width: 90%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-title-center {
    /* Better responsive font sizing */
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }

  .hero-description-center {
    /* Improved mobile text size and spacing */
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .logo-img {
    height: 45px !important;
  }
}

@media (max-width: 640px) {
  .collage-image {
    /* Even smaller images for small screens */
    width: 100px !important;
    height: 130px !important;
  }

  .hero-title-center {
    /* Smaller title for very small screens */
    font-size: clamp(1.4rem, 7vw, 2.2rem);
    margin-bottom: 1rem;
  }

  .hero-description-center {
    /* Smaller description text */
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-container {
    padding: 0.5rem;
  }

  .hero-content-center {
    /* Better mobile padding */
    padding: 1.5rem 0.75rem;
    max-width: 95%;
  }

  /* Adjusted positioning for very small screens */
  .collage-left-1 {
    top: 10%;
    left: 0%;
  }
  .collage-left-2 {
    top: 42%;
    left: 0%;
  }
  .collage-left-3 {
    top: 27%;
    left: 4%;
  }
  .collage-left-4 {
    bottom: 28%;
    left: 1%;
  }

  .collage-right-1 {
    top: 8%;
    right: 0%;
  }
  .collage-right-2 {
    top: 40%;
    right: 0%;
  }
  .collage-right-3 {
    top: 25%;
    right: 3%;
  }
  .collage-right-4 {
    bottom: 26%;
    right: 1%;
  }

  .btn {
    /* Smaller buttons for mobile */
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Better scroll indicator positioning on small screens */
  .scroll-indicator {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile optimization */
  .hero-container {
    padding: 0.25rem;
  }

  .collage-image {
    /* Smallest image sizes for extra small screens */
    width: 90px !important;
    height: 115px !important;
  }

  /* Adjusted positioning for very small screens */
  .collage-left-1 {
    top: 12%;
    left: 0%;
  }
  .collage-left-2 {
    top: 45%;
    left: 0%;
  }
  .collage-left-3 {
    top: 29%;
    left: 3%;
  }
  .collage-left-4 {
    bottom: 30%;
    left: 0%;
  }

  .collage-right-1 {
    top: 10%;
    right: 0%;
  }
  .collage-right-2 {
    top: 43%;
    right: 0%;
  }
  .collage-right-3 {
    top: 27%;
    right: 2%;
  }
  .collage-right-4 {
    bottom: 28%;
    right: 0%;
  }

  .hero-content-center {
    /* Maximum mobile optimization */
    padding: 1.25rem 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-title-center {
    /* Smallest responsive title */
    font-size: clamp(1.3rem, 8vw, 2rem);
    margin-bottom: 0.8rem;
  }

  .hero-description-center {
    /* Smallest description text */
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }

  .btn {
    /* Smallest button size */
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    min-width: 180px;
  }

  /* Better scroll indicator positioning on small screens */
  .scroll-indicator {
    bottom: 0.75rem;
  }

  .scroll-text {
    /* Smaller scroll indicator text */
    font-size: 0.8rem;
  }
}

/* Added extra breakpoint for very wide mobile screens */
@media (max-width: 390px) {
  .hero-title-center {
    font-size: clamp(1.2rem, 9vw, 1.8rem);
  }

  .hero-description-center {
    font-size: 0.8rem;
  }

  .collage-image {
    width: 80px !important;
    height: 105px !important;
  }

  .hero-content-center {
    padding: 1rem 0.25rem;
  }
}

/* Performance optimizations */
.collage-image img {
  will-change: transform;
}

.btn {
  will-change: transform;
}

.hero-content-center {
  will-change: opacity, transform;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fd748a1 *//* Sección Nosotros - Avena & Canela */
.avena-about-section {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  font-family: "Arial", sans-serif;
}

.avena-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header de la sección */
.avena-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Removed logo styles since logo is no longer displayed */
/* .avena-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: avenaFadeInUp 1s ease forwards;
} */

.avena-title {
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 10px;
  font-weight: bold;
  opacity: 0;
  font-family: "Kalam", cursive;
  transform: translateY(30px);
  animation: avenaFadeInUp 1s ease 0.2s forwards;
}

.avena-subtitle {
  font-size: 1.2rem;
  color: #a0522d;
  opacity: 0;
  transform: translateY(30px);
  animation: avenaFadeInUp 1s ease 0.4s forwards;
}

/* Contenido principal */
.avena-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

/* Contenido de texto */
.avena-text-content > * {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease 0.2s;
}

.avena-text-content > *.avena-animate-in {
  opacity: 1;
  transform: translateX(0);
}

.avena-intro {
  margin-bottom: 40px;
}

.avena-greeting {
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 20px;
  font-weight: bold;
}

.avena-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5d4037;
}

.avena-mission {
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
  border-radius: 15px;
  border-left: 5px solid #d2691e;
}

.avena-mission-title {
  font-size: 1.5rem;
  color: #8b4513;
  margin-bottom: 15px;
  font-weight: bold;
}

.avena-mission-text {
  color: #5d4037;
  line-height: 1.6;
}

/* Valores */
.avena-values {
  margin-bottom: 40px;
}

.avena-value-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avena-value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.avena-value-icon {
  font-size: 2rem;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d2691e, #cd853f);
  border-radius: 50%;
  color: white;
}

.avena-value-content h5 {
  font-size: 1.2rem;
  color: #8b4513;
  margin-bottom: 5px;
  font-weight: bold;
}

.avena-value-content p {
  color: #5d4037;
  margin: 0;
}

/* CTA */
.avena-cta {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  border-radius: 15px;
  color: white;
}

.avena-cta-text {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.avena-cta-button {
  background: #d2691e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.avena-cta-button:hover {
  background: #cd853f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

/* Contenido de imágenes */
.avena-founder-card {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.3s;
}

.avena-founder-card.avena-animate-in {
  opacity: 1;
  transform: translateX(0);
}

.avena-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.avena-founder-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Ensure cards are visible by default */
  opacity: 1;
}

.avena-founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.avena-founder-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.avena-founder-info {
  padding: 20px;
  text-align: center;
}

.avena-founder-info h4 {
  color: #8b4513;
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: bold;
}

.avena-founder-info p {
  color: #a0522d;
  margin: 0;
}

.avena-team-photo {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
  /* Ensure team photo is visible by default */
  opacity: 1;
}

.avena-team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.avena-team-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
  color: white;
  padding: 30px 20px 20px;
  text-align: center;
}

.avena-team-caption p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Estadísticas */
.avena-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.avena-stat-item {
  padding: 30px 20px;
  background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.avena-stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
  background: linear-gradient(135deg, #e8d5c4, #d2b48c);
}

.avena-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.avena-plus,
.avena-percent {
  font-size: 2.5rem;
  color: #d2691e;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.avena-stat-item:hover .avena-plus,
.avena-stat-item:hover .avena-percent {
  transform: scale(1.2) rotate(360deg);
}

.avena-stat-item:hover .avena-counter {
  color: #d2691e;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.avena-stat-label {
  color: #a0522d;
  font-weight: bold;
  transition: color 0.3s ease;
}

.avena-stat-item:hover .avena-stat-label {
  color: #8b4513;
}

/* Elementos flotantes decorativos */
.avena-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.avena-float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.avena-float-1 {
  width: 100px;
  height: 100px;
  background: #d2691e;
  top: 10%;
  left: 5%;
  animation: avenaFloat 6s ease-in-out infinite;
}

.avena-float-2 {
  width: 150px;
  height: 150px;
  background: #cd853f;
  top: 60%;
  right: 10%;
  animation: avenaFloat 8s ease-in-out infinite reverse;
}

.avena-float-3 {
  width: 80px;
  height: 80px;
  background: #a0522d;
  bottom: 20%;
  left: 15%;
  animation: avenaFloat 7s ease-in-out infinite;
}

/* Animaciones */
@keyframes avenaFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes avenaFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .avena-main-content {
    gap: 40px;
  }

  .avena-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .avena-about-section {
    padding: 60px 0;
  }

  .avena-container {
    padding: 0 15px;
  }

  .avena-main-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .avena-title {
    font-size: 2rem;
  }

  .avena-greeting {
    font-size: 1.7rem;
  }

  .avena-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .avena-founders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .avena-about-section {
    padding: 40px 0;
  }

  .avena-title {
    font-size: 1.8rem;
  }

  .avena-greeting {
    font-size: 1.5rem;
  }

  .avena-stats {
    grid-template-columns: 1fr;
  }

  .avena-stat-number {
    font-size: 2.5rem;
  }

  /* Removed logo styles since logo is no longer displayed */
  /* .avena-logo {
    width: 150px;
  } */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f04bbf8 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.avena-productos-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f5f2e8 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(210, 105, 30, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(205, 133, 63, 0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d2691e' fill-opacity='0.02'%3E%3Cpath d='M50 50m-20 0a20 20 0 1 1 40 0a20 20 0 1 1 -40 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cd853f' fill-opacity='0.015'%3E%3Cpolygon points='40,0 60,30 40,60 20,30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px, 150px 150px, 200px 200px, 100px 100px, 80px 80px;
  background-position: 0 0, 50px 50px, 100px 0, 25px 25px, 75px 75px;
  min-height: 100vh;
  position: relative;
}

.avena-productos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d2691e' fill-opacity='0.03'%3E%3Cellipse cx='30' cy='30' rx='8' ry='4' transform='rotate(45 30 30)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cd853f' fill-opacity='0.025'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px, 40px 40px;
  background-position: 10px 10px, 80px 120px;
  pointer-events: none;
  z-index: 0;
  animation: floatElements 20s ease-in-out infinite;
}

.avena-productos-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23d2691e' stroke-opacity='0.02' stroke-width='2'%3E%3Cpath d='M20 20Q180 20 180 180Q20 180 20 20z' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23cd853f' stroke-opacity='0.015' stroke-width='1'%3E%3Ccircle cx='75' cy='75' r='60' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px, 150px 150px;
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatElements {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

.avena-productos-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.avena-productos-header {
  text-align: center;
  margin-bottom: 60px;
}

.avena-productos-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Kalam", cursive;
  color: #8b4513;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.avena-productos-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.avena-productos-category {
  margin-bottom: 80px;
}

.avena-category-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #d2691e;
  text-align: center;
  font-family: "Kalam", cursive;
  margin-bottom: 40px;
  position: relative;
}

.avena-category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d2691e, #cd853f);
  border-radius: 2px;
}

.avena-productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.avena-producto-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.avena-producto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
  border-color: #d2691e;
}

.avena-producto-image {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.avena-producto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.avena-producto-card:hover .avena-producto-image img {
  transform: scale(1.1);
}

.avena-producto-info {
  padding: 25px;
  text-align: center;
  font-family: "Kalam", cursive;
}

.avena-producto-info h4 {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Kalam", cursive;
  color: #8b4513;
  margin-bottom: 10px;
}

.avena-producto-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.avena-ver-mas-btn {
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.avena-ver-mas-btn:hover {
  background: linear-gradient(135deg, #cd853f, #d2691e);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

/* Modal Styles */
.avena-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: "Kalam", cursive;
}

.avena-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.avena-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.avena-modal-overlay.active .avena-modal-content {
  transform: scale(1);
}

.avena-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d2691e;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.avena-modal-close:hover {
  background: #8b4513;
  transform: rotate(90deg);
}

.avena-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

/* Centering modal image and filling space */
.avena-modal-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.avena-modal-left img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.avena-modal-right h3 {
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 30px;
  font-family: "Kalam", cursive;
  text-align: center;
}

.avena-modal-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.avena-tab-btn {
  flex: 1;
  padding: 15px 10px;
  background: none;
  border: none;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.avena-tab-btn.active {
  color: #d2691e;
  border-bottom-color: #d2691e;
  font-family: "Kalam", cursive;
}

.avena-tab-btn:hover {
  color: #d2691e;
}

.avena-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.avena-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avena-nutrition-table {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  border: 2px solid #d2691e;
}

.avena-nutrition-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 500;
}

.avena-nutrition-row:last-child {
  border-bottom: none;
}

.avena-nutrition-row span:first-child {
  color: #666;
}

.avena-nutrition-row span:last-child {
  color: #d2691e;
  font-weight: 600;
}

.avena-nutrition-separator {
  height: 1px;
  background: #d2691e;
  margin: 0px 0;
  opacity: 0.3;
}

.avena-nutrition-subitem {
  padding-left: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.avena-nutrition-subitem span:first-child {
  color: #888;
}

.avena-usage-info h4 {
  color: #8b4513;
  margin-bottom: 15px;
  font-family: "Kalam", cursive;
  font-size: 1.2rem;
}

.avena-usage-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: "Kalam", cursive;
}

/* CTA section styles */
.avena-products-cta {
  text-align: center;
  background: linear-gradient(135deg, #8b4513, #d2691e);
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  margin-top: 80px;
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.avena-products-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.avena-products-cta h3 {
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: white;
  font-family: "Kalam", cursive;
}

.avena-products-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.avena-cta-button {
  background: white;
  color: #8b4513;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.avena-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

.avena-cta-button:active {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .avena-productos-title {
    font-size: 2.5rem;
  }

  .avena-category-title {
    font-size: 2rem;
  }

  .avena-productos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .avena-modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .avena-modal-left img {
    max-height: 250px;
  }

  .avena-tab-btn {
    font-size: 0.9rem;
    padding: 12px 8px;
  }

  .avena-products-cta {
    padding: 40px 20px;
    margin-top: 60px;
  }

  .avena-products-cta h3 {
    font-size: 2rem;
  }

  .avena-products-cta p {
    font-size: 1rem;
  }

  .avena-cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .avena-productos-section {
    padding: 40px 15px;
  }

  .avena-productos-title {
    font-size: 2rem;
  }

  .avena-category-title {
    font-size: 1.8rem;
  }

  .avena-modal-content {
    width: 95%;
    margin: 20px;
  }

  .avena-products-cta h3 {
    font-size: 1.8rem;
  }

  .avena-cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7955bed *//* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #4b5563;
}

/* Main section */
.avena-locations-section {
  background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
  padding: 80px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.avena-locations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a16207" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23059669" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23a16207" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23059669" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  pointer-events: none;
}

.avena-locations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.avena-locations-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.avena-locations-title {
  font-family: "Kalam", cursive;
  font-weight: bolder;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #a16207;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.avena-locations-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d2691e;
  border-radius: 2px;
}

.avena-locations-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Carousel Container */
.avena-carousel-container {
  position: relative;
  margin-bottom: 40px;
}

.avena-carousel-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.avena-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
  padding: 20px;
}

/* Location Cards */
.avena-location-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.avena-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.avena-location-card:hover::before {
  left: 100%;
}

.avena-location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(161, 98, 7, 0.15);
  border-color: #a16207;
}

/* Updated logo styles with larger size */
.avena-card-logo {
  width: 100px; /* Increased from 80px */
  height: 100px; /* Increased from 80px */
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f4f6;
  padding: 12px; /* Increased padding slightly */
}

.avena-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.avena-location-card:hover .avena-card-logo {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(161, 98, 7, 0.2);
  border-color: #a16207;
}

.avena-location-card:hover .avena-logo-img {
  transform: scale(1.1);
}

.avena-card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #a16207;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.avena-location-card:hover .avena-card-title {
  color: #059669;
}

.avena-card-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.avena-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Carousel Navigation */
.avena-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #a16207;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a16207;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avena-carousel-btn:hover {
  background: #a16207;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(161, 98, 7, 0.3);
}

.avena-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

.avena-carousel-prev {
  left: -25px;
}

.avena-carousel-next {
  right: -25px;
}

/* Carousel Indicators */
.avena-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.avena-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.avena-indicator.active {
  background: #a16207;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.3);
}

.avena-indicator:hover {
  background: #059669;
  transform: scale(1.2);
}

/* CTA Section */
.avena-locations-cta {
  text-align: center;
  background: linear-gradient(135deg, #a16207, #059669);
  padding: 50px 40px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.avena-locations-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

.avena-locations-cta h3 {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.avena-locations-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
    font-family: "Arial", cursive;
  z-index: 1;
}

.avena-cta-button {
  background: white;
  color: #d2691e;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: "Kalam", cursive;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.avena-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background: #fef3c7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .avena-location-card {
    flex: 0 0 calc(50% - 10px);
  }

  .avena-carousel-prev {
    left: -20px;
  }

  .avena-carousel-next {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .avena-locations-section {
    padding: 60px 0;
  }

  .avena-locations-container {
    padding: 0 15px;
  }

  .avena-location-card {
    flex: 0 0 calc(100% - 0px);
    margin: 0 10px;
  }

  .avena-carousel-track {
    gap: 0;
    padding: 20px 10px;
  }

  .avena-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .avena-carousel-prev {
    left: -15px;
  }

  .avena-carousel-next {
    right: -15px;
  }

  .avena-locations-cta {
    padding: 40px 25px;
  }

  .avena-locations-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .avena-locations-header {
    margin-bottom: 40px;
  }

  .avena-carousel-btn {
    display: none;
  }

  .avena-location-card {
    padding: 25px 20px;
  }

  /* Updated mobile logo size - increased from 60px to 80px */
  .avena-card-logo {
    width: 80px;
    height: 80px;
  }

  .avena-card-title {
    font-size: 1.1rem;
  }

  .avena-locations-cta {
    padding: 30px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09c7303 *//* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f4f0 0%, #ede4d8 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #6b4423;
  margin-bottom: 20px;
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #6b4423;
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #8b6f47;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Styles */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(107, 68, 35, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.contact-form-container.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #6b4423;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8ddd4;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b4423;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message,
.form-group textarea.error + .error-message {
  opacity: 1;
  transform: translateY(0);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #6b4423 0%, #8b6f47 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.3);
}

.submit-btn.loading {
  pointer-events: none;
}

.submit-btn .btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: block;
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 20px;
  color: #155724;
}

.success-message i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #28a745;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.info-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 68, 35, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b4423 0%, #8b6f47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  color: #6b4423;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: #6b4423;
  color: white;
  padding: 50px 0 20px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-logo .logo-img {
  max-width: 134px;
  height: auto !important;
  border-radius: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f8f4f0;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e8ddd4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #f8f4f0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(248, 244, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8f4f0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #f8f4f0;
  color: #6b4423;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 244, 240, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #e8ddd4;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .info-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 20px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
  }
}/* End custom CSS */