.elementor-kit-6{--e-global-color-primary:#0A4F48;--e-global-color-secondary:#FFCB6E;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-7398d62:#0A4F48;--e-global-color-ef2d46b:#FFCB6E;--e-global-color-dc7c9a8:#F48645;--e-global-color-3537820:#F7F4ED;--e-global-color-85d116d:#FFFFFF;--e-global-color-c9b772f:#111111;--e-global-color-1f80b62:#86A6A0;--e-global-typography-primary-font-family:"Funnel Display";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Libre Caslon Condensed";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-letter-spacing:-0.4px;--e-global-typography-text-font-family:"Funnel Display";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Funnel Display";--e-global-typography-accent-font-weight:700;--e-global-typography-1b794ff-font-family:"Funnel Display";--e-global-typography-1b794ff-font-size:var(--font-size-paragraph-normal);--e-global-typography-1b794ff-line-height:var(--line-height-paragraph-normal);--e-global-typography-78fc142-font-family:"Funnel Display";--e-global-typography-78fc142-font-size:18px;--e-global-typography-78fc142-text-transform:uppercase;--e-global-typography-fbf4fec-font-family:"Libre Caslon Condensed";--e-global-typography-fbf4fec-font-size:clamp(2.75rem, 2.125rem + 2.083vw, 4rem);--e-global-typography-fbf4fec-line-height:.96;--e-global-typography-fbf4fec-letter-spacing:-3px;--e-global-typography-9fb6240-font-family:"Libre Caslon Condensed";--e-global-typography-9fb6240-font-size:48px;--e-global-typography-9fb6240-font-weight:400;--e-global-typography-9fb6240-line-height:.96;--e-global-typography-9fb6240-letter-spacing:-1.5px;--e-global-typography-2507f45-font-family:"Libre Caslon Condensed";--e-global-typography-2507f45-font-size:36px;--e-global-typography-2507f45-font-weight:400;--e-global-typography-2507f45-line-height:.96;--e-global-typography-2507f45-letter-spacing:-1.5px;--e-global-typography-5b42867-font-family:"Funnel Display";--e-global-typography-5b42867-font-size:clamp(0.938rem, 0.476rem + 0.721vw, 1.125rem);--e-global-typography-5b42867-line-height:var(--line-height-paragraph-normal);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:var(--container-width, 1140px);}.e-con{--container-max-width:var(--container-width, 1140px);--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:1.25rem;}.elementor-element{--widgets-spacing:1.25rem 1.25rem;--widgets-spacing-row:1.25rem;--widgets-spacing-column:1.25rem;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-fbf4fec-font-size:clamp(2.75rem, 1.875rem + 2.917vw, 4.5rem);--e-global-typography-fbf4fec-letter-spacing:-3px;--e-global-typography-9fb6240-font-size:32px;--e-global-typography-2507f45-font-size:28px;--e-global-typography-2507f45-letter-spacing:-1px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-fbf4fec-font-size:clamp(2.75rem, 1.875rem + 2.917vw, 4.5rem);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ================================
   SCROLL-DRIVEN ANIMATIONS (CSS)
   Con retraso natural al entrar
   ================================ */

root {
  --entry: 20%;
  --cover: 40%;
}

@media (max-width: 540px)
{
.grid-1col-xs > div{
    grid-template-columns: 1fr!important
    
}
}
/* Fade In */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Fade Down */
.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  animation: fadeDown 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

/* Fade Left */
.fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* Fade Right */
.fade-right {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeRight 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Slide Up */
.slide-up {
  transform: translateY(60px);
  animation: slideUp 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes slideUp {
  to { transform: translateY(0); }
}

/* Slide Down */
.slide-down {
  transform: translateY(-60px);
  animation: slideDown 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes slideDown {
  to { transform: translateY(0); }
}

/* Zoom In */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes zoomIn {
  to { opacity: 1; transform: scale(1); }
}

/* Zoom Out */
.zoom-out {
  opacity: 0;
  transform: scale(1.2);
  animation: zoomOut 1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry var(--entry) cover var(--cover);
}
@keyframes zoomOut {
  to { opacity: 1; transform: scale(1); }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Funnel Display';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://devoradorescatering.com/wp-content/uploads/2025/11/FunnelDisplaywght.woff2') format('woff2');
}
@font-face {
	font-family: 'Funnel Display';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://devoradorescatering.com/wp-content/uploads/2025/11/FunnelDisplay-Bold.woff2') format('woff2');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Libre Caslon Condensed';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://devoradorescatering.com/wp-content/uploads/2025/11/LibreCaslonCondensed-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Libre Caslon Condensed';
	font-style: italic;
	font-weight: 600;
	font-display: auto;
	src: url('https://devoradorescatering.com/wp-content/uploads/2025/11/LibreCaslonCondensed-MediumItalic.woff2') format('woff2');
}
/* End Custom Fonts CSS */