/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Burtons';
    src: url('../fonts/Burtons.otf') format('opentype'),
        url('../fonts/Burtons.woff') format('opentype'),
        url('../fonts/Burtons.woff2') format('opentype');
}


/* --- Root --- */
:root {
    --primary-font: 'Montserrat', sans-serif;
    --title-font: 'Burtons';
    --color-white: #fff;
    --color-whitesmoke: #f5f5f5;
    --color-ghostwhite: #f8f8f8;
    --color-black: #000;
    --color-black2: #333;
    --color-primary1: #ec5054;
    --color-primary2: #f0ecd9;
    --color-primary3: #294272;
    --font-h1: clamp(2.75rem, 5vw + 1rem, 4.75rem);
    --font-h2: clamp(2.25rem, 2vw + 1.5rem, 4.25rem);
    --font-h3: clamp(2rem, 5vw, 3.75rem);
    --font-menu-m: 1.313rem;
    --font-menu-s: 1.125rem;
    --font-subtitle-l: 1.5rem;
    --font-subtitle-m: 1.313rem;
    --font-subtitle-s: 1.125rem;
    --font-text-m: 1rem;
    --font-text-s: 0.875rem;
}


/* --- Global Styles --- */
body {
    background-color: var(--color-ghostwhite);
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 100px 0;
}

.section_container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 100px 0
}

.title_content {
    color: var(--color-primary1);
    font-family: var(--title-font);
    font-size: var(--font-h3);
    line-height: 1.1;
}

.subtitle_content {
    color: #425a8a;
    font-family: var(--primary-font);
    font-size: var(--font-subtitle-l);
    font-style: oblique;
    font-weight: 600;
    line-height: 1.2;
}

.text_content {
    color: var(--color-black2);
    font-family: var(--primary-font);
    font-size: var(--font-text-m);
    font-weight: 500;
    line-height: 1.6;
}



/* ------ Boutton Order ------ */
.order {
    background: var(--color-primary2);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: var(--color-primary3);
    font-family: var(--primary-font);
    font-size: var(--font-text-m);
    font-weight: bold;
    line-height: 1.6;
    padding: 12px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    transition: box-shadow 0.2s;
    z-index: 9999;
}

.order:hover {
    background: var(--color-primary3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: var(--color-primary2);
}

.order a {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.order svg {
    height: 25px;
    width: 25px;
}



/* ------ Header ------ */
.header {
    background-color: var(--color-primary2);
    box-shadow: 0 2px 20px rgba(41, 66, 114, 0.25);
    height: 110px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: box-shadow 0.3s ease;
    z-index: 1000;
}

.header .header_cont {
    height: 100%;
    padding: 0 80px;
    position: relative;
}

.header .wrapper {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    transition: transform 0.5s ease;
}

.header .logo:hover {
    transform: scale(1.05);
}

.header .logo img {
    height: 70px;
    width: auto;
}

/* --- Navbar --- */
.header .navbar {
    display: block;
}

/* Icono X */
.header .navbar .close-icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    display: none;
    padding: 10px;
    position: absolute;
    right: 45px;
    top: 30px;
    z-index: 2101;
}

.header .navbar .close-icon:hover {
    transform: scale(1.1);
}

.header .navbar .close-icon svg {
    color: var(--color-whitesmoke);
    height: 25px;
    width: 25px;
}

/* Navbar_Menu */
.header .navbar .navbar_menu {
    display: flex;
    gap: 30px;
}

.header .navbar .navbar_menu a {
    color: var(--color-primary1);
    font-family: var(--title-font);
    font-size: var(--font-menu-m);
    font-weight: 600;
    position: relative;
    transition: color 0.5s ease;
}

.header .navbar .navbar_menu a.active {
    color: var(--color-primary3);
    font-weight: 700;
}

.header .navbar .navbar_menu a:hover {
    color: var(--color-primary3);
}

/* Icon Menu Responsive */
.header .menu-icon {
    background-color: rgba(41, 66, 114, 0.1);
    border-radius: 15px;
    cursor: pointer;
    display: none;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.header .menu-icon:hover {
    transform: scale(1.1);
}

.header .menu-icon svg {
    color: var(--color-primary3);
    height: 25px;
    width: 25px;
}





/* ------ Main Content ------ */
.main-content {
    min-height: calc(100vh - 110px);
    padding-top: 110px;
}

/* ------ Section Home ------ */
.section-home {
    background-color: var(--color-primary2);
    min-height: calc(100dvh - 110px);
    width: 100%;
}

/* --- Home Hero --- */
.home-hero {
    height: calc(100dvh - 110px);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-hero .slider {
    background: url('../img/hero-bg.webp') no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-hero .slide {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.home-hero .slide-active {
    opacity: 1;
    transform: translateX(0);
}

.home-hero .slide-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* General Slider Content */
.home-hero .slide .slide-content {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 0;
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero .slide-description {
    flex: 1;
    text-align: center;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.home-hero .slide-description .highlight {
    color: var(--color-primary1);
    font-size: 1.2em;
    font-weight: 900;
}

.home-hero .slide-description p {
    color: var(--color-white);
    font-size: var(--font-subtitle-l);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-shadow: -3px 1px var(--color-primary3);
}

.home-hero .slide .slide-image {
    flex: 1;
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Buttons */
.home-hero .cta-button {
    background: transparent;
    border: 3px solid var(--color-white);
    border-radius: 50px;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    font-size: var(--font-subtitle-s);
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    padding: 15px 35px;
    position: relative;
    text-decoration: none;
    text-shadow: -2px 1px var(--color-primary3);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.home-hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: left 0.3s ease;
    z-index: -1;
}

.home-hero .cta-button:hover {
    color: var(--color-primary3);
    text-shadow: none;
}

.home-hero .cta-button:hover::before {
    left: 0;
}

/* Slide 1 */
.home-hero .slide-1 .slide-description h1 {
    color: var(--color-whitesmoke);
    font-family: var(--title-font);
    font-size: var(--font-h1);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: right;
    text-shadow: -6px 5px 3px var(--color-primary3);
}

.home-hero .slide-1 .slide-image picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero .slide-1 .slide-image img {
    height: clamp(200px, 35vw, 500px);
    width: auto;
    max-width: 100%;
    filter: drop-shadow(10px 0 30px rgba(41, 67, 114, 0.5));
    transition: transform 0.3s ease;
}

.home-hero .slide-1 .slide-image:hover img {
    transform: scale(1.05);
}

/* Slide 2 */
.home-hero .slide-2 .slide-description h2,
.home-hero .slide-3 .slide-description h2 {
    color: var(--color-whitesmoke);
    font-family: var(--title-font);
    font-size: var(--font-h2);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: -6px 5px 3px var(--color-primary3);
}

.home-hero .slide-2 .slide-description h2 {
    text-align: center;
}

.home-hero .slide-2 .slide-description .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Slide 3 */
.home-hero .slide-3 .slide-image picture {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero .slide-3 .slide-image img {
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: auto;
    width: clamp(200px, 45vw, 450px);
    max-height: 100%;
    transition: transform 0.3s ease;
}

.home-hero .slide-3 .slide-image img:hover {
    transform: scale(1.05) rotate(5deg) !important;
}

/* Slider Controls */
.home-hero .slider-controls {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.home-hero .slider-controls .slider-btn {
    cursor: pointer;
    height: 50px;
    width: 50px;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 1s ease;
    z-index: 101;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero .slider-controls .slider-btn svg {
    color: var(--color-white);
    height: 40px;
    width: 40px;
}

.home-hero .slider-controls .slider-btn svg:hover {
    transform: scale(1.3);
}

.home-hero .slider-controls .slider-prev {
    left: 30px;
}

.home-hero .slider-controls .slider-next {
    right: 30px;
}

/* Dots Slider */
.home-hero .slider-controls .slider-indicators {
    pointer-events: auto;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;

    display: flex;
    gap: 12px;
}

.home-hero .slider-controls .indicator {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    height: 12px;
    width: 12px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.home-hero .slider-controls .indicator:hover {
    background: rgb(41, 66, 114, 0.5);
    transform: scale(1.2);
}

.home-hero .slider-controls .indicator-active {
    background: var(--color-primary3);
    transform: scale(1.3);
}

/* Animaciones Slider */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    70% {
        opacity: 1;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.home-hero .slide-1:not(.slide-active) .slide-description h1,
.home-hero .slide-1:not(.slide-active) .slide-description p,
.home-hero .slide-1:not(.slide-active) .slide-description .cta-button {
    opacity: 0;
}

.home-hero .slide-1.slide-active .slide-description h1 {
    opacity: 0;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards,
               subtleFloat 2s ease-in-out 1.8s infinite;
}

.home-hero .slide-1.slide-active .slide-description p {
    opacity: 0;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.home-hero .slide-1.slide-active .slide-description .cta-button {
    opacity: 0;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

.home-hero .slide-1.slide-active .slide-image {
    opacity: 0;
    animation: flipIn 3s ease-out 1.5s forwards;
}


/* Keyframe slide-2 */
@keyframes plateSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-200px) rotate(-15deg);
    }
    60% {
        opacity: 1;
        transform: translateX(20px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.home-hero .slide-2.slide-active .slide-description h2 {
    opacity: 0;
    animation: plateSlideIn 1.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero .slide-2.slide-active .slide-description p {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.home-hero .slide-2.slide-active .slide-description .cta-button {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}


/* Keyframe slide-3 */
@keyframes professionalSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero .slide-3.slide-active .slide-description h2 {
    opacity: 0;
    animation: professionalSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.home-hero .slide-3.slide-active .slide-description p {
    opacity: 0;
    animation: professionalSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.home-hero .slide-3.slide-active .slide-description .cta-button {
    opacity: 0;
    animation: professionalSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.home-hero .slide-3.slide-active .slide-image img {
    opacity: 0;
    animation: zoomIn 1.5s ease-out 0.5s forwards;
}



/* --- Home About --- */
.home-about,
.home-opinion {
    background: var(--color-ghostwhite);
    margin: 0;
    position: relative;
}

.home-about .home-about_badge {
    background: rgba(20, 43, 89, 0.7);
    border-radius: 6px;
    color: var(--color-white);
    display: inline-block;
    font-size: var(--font-text-s);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 50px;
    padding: 12px 24px;
    text-transform: uppercase;
}

.home-about .home-about_title {
    margin-bottom: 50px;
    position: relative;
}

.home-about .home-about_title::after {
    background: linear-gradient(90deg, #cf5154, #425a8a);
    border-radius: 2px;
    content: '';
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
}

.home-about .home-about_content {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
}

.home-about .home-about_description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.home-about .home-about_description .highlight {
    color: var(--color-primary1);
    font-size: 1.2em;
    font-style: oblique;
    font-weight: 700;
}

.home-about .home-about_description .highlight-2 {
    color: #aca47a;
    font-size: 1.1em;
    font-weight: bold;
}

.home-about .home-about_image {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-about .home-about_image img {
    height: auto;
    width: clamp(200px, 40vw, 450px);
    max-height: 100%;
}

/* Animaciones Home About */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-about .home-about_badge {
    opacity: 0;
    transform: translateY(50px);
}

.home-about .home-about_title {
    opacity: 0;
    transform: translateY(50px);
}

.home-about .home-about_description .subtitle_content {
    opacity: 0;
    transform: translateY(50px);
}

.home-about .home-about_description .text_content {
    opacity: 0;
    transform: translateY(50px);
}

.home-about .home-about_image img {
    opacity: 0;
    transform: translateY(50px);
}

/* Estados cuando la sección es visible - animaciones escalonadas */
.home-about.in-view .home-about_badge {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.home-about.in-view .home-about_title {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.home-about.in-view .home-about_description .subtitle_content {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.home-about.in-view .home-about_description .text_content {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.home-about.in-view .home-about_image img {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

/* Animación alternativa más suave para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .home-about.animate .home-about_badge,
    .home-about.animate .home-about_title,
    .home-about.animate .home-about_description .subtitle_content
    .home-about.animate .home-about_description .text_content,
    .home-about.animate .home-about_image img {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* --- Home Parallax --- */
.home-parallax {
    height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



/* --- Home Services --- */
.home-services,
.home-gallery {
    background: var(--color-white);
    margin: 0;
    position: relative;
}

.home-services .home-services_title {
    margin-bottom: 50px;
    position: relative;
    text-align: right;
}

.home-services .home-services_title::after {
    background: linear-gradient(90deg, #cf5154, #425a8a);
    border-radius: 2px;
    content: '';
    height: 3px;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 120px;
}

.home-services .home-services_content {
    margin-bottom: 100px;

    display: grid;
    gap: 75px;
    grid-template-columns: repeat(3, 1fr);
}

.home-services .home-services_item {
    background-color: var(--color-whitesmoke);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
}

.home-services .tacos .home-services_description {
    order: 1;
}

.home-services .tacos .home-services_image {
    order: 2;
}

.home-services .home-services_image {
    height: auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.home-services .home-services_image img {
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.home-services .home-services_description {
    aspect-ratio: 1 / 1;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.home-services .home-services_description .subtitle_content {
    font-size: var(--font-subtitle-m);
}

.home-services .home-services_description .text_content span {
    font-size: 1.1em;
    font-weight: bold;
    color: #aca47a;
}

.home-services .home-services_description .text_content .highlight {
    color: var(--color-primary1);
    font-size: 1.2em;
    font-style: oblique;
    font-weight: 700;
}

/* Home Services Gallery */
.home-services .home-services_gallery {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 20% 1fr 20%;
    height: 720px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.home-services .home-services_gallery .home-gallery_image-1 {
    overflow: hidden;
    grid-column: 1;
    grid-row: 1 / 3;
}

.home-services .home-services_gallery .home-gallery_image-2 {
    overflow: hidden;
    grid-column: 2;
    grid-row: 2;
}

.home-services .home-services_gallery .home-gallery_image-3 {
    overflow: hidden;
    grid-column: 3;
    grid-row: 2 / 4;
}

.home-services .home-services_gallery video,
.home-services .home-services_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

/* Animaciones Home Services */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-services .home-services_title {
    opacity: 0;
    transform: translateY(50px);
}

.home-services .home-services_item {
    opacity: 0;
    transform: translateY(50px);
}

.home-services.in-view .home-services_title {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.home-services.in-view .home-services_item:nth-child(1) {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.home-services.in-view .home-services_item:nth-child(2) {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.home-services.in-view .home-services_item:nth-child(3) {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .home-services.in-view .home-services_title,
    .home-services.in-view .home-services_item {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-services .home-services_gallery .home-gallery_image-1,
.home-services .home-services_gallery .home-gallery_image-2,
.home-services .home-services_gallery .home-gallery_image-3 {
    opacity: 0;
    transform: translateY(50px);
}

.home-services .home-services_gallery.gallery-in-view .home-gallery_image-1 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.home-services .home-services_gallery.gallery-in-view .home-gallery_image-2 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.home-services .home-services_gallery.gallery-in-view .home-gallery_image-3 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}



/* --- Home Services --- */
.home-opinion .home-opinion_title {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.home-opinion .home-opinion_title::after {
    background: linear-gradient(90deg, #cf5154, #425a8a);
    border-radius: 2px;
    content: '';
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 60px);
    width: 120px;
}

.home-opinion .subtitle_content {
    margin-bottom: 50px;
    text-align: center;
}

.home-opinion .carousel {
    background-color: #fffdf6;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    position: relative;
}

.home-opinion .carousel .carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.home-opinion .carousel .review-card {
    background: rgba(255,255,255,0.1);
    min-height: 400px;
    min-width: 100%;
    padding: 50px 40px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.home-opinion .carousel .home-opinion_icon {
    display: flex;
    justify-content: center;
}

.home-opinion .carousel .home-opinion_icon svg {
    color: #697ea6;
    height: 50px;
    width: auto;
}

.home-opinion .carousel .stars {
    color: var(--color-primary1);
    font-size: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.home-opinion .carousel .review-description {
    text-align: center;
    font-style: oblique;
}

.home-opinion .carousel .reviewer {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.home-opinion .reviewer .avatar {
    background: var(--color-primary1);
    border-radius: 50%;
    color: var(--color-primary2);
    font-size: 1.4rem;
    font-weight: bold;
    height: 60px;
    width: 60px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-opinion .reviewer .reviewer-name {
    color: var(--color-black2);
    font-size: 1.2rem;
    font-weight: bold;
}

.home-opinion .reviewer .review-date {
    color: var(--color-black2);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Dots Control */
.home-opinion .carousel .carousel-indicators {
    margin: 30px 0;

    display: flex;
    gap: 12px;
    justify-content: center;
}

.home-opinion .carousel .dots {
    background: #ccc6a8;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    height: 12px;
    width: 12px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.home-opinion .carousel .dots.active {
    background: var(--color-primary3);
    transform: scale(1.3);
}

.home-opinion .carousel .dots:hover {
    background: rgb(41, 66, 114, 0.5);
    transform: scale(1.2);
}

/* Animaciones Home Opinion */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-opinion .home-opinion_title {
    opacity: 0;
    transform: translateY(50px);
}

.home-opinion .subtitle_content {
    opacity: 0;
    transform: translateY(50px);
}

.home-opinion.in-view .home-opinion_title {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.home-opinion.in-view .subtitle_content {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .home-opinion.in-view .home-opinion_title,
    .home-opinion.in-view .subtitle_content {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ------ About Section ------ */
.section-about,
.section-services,
.section-menu,
.section-contact {
    background: var(--color-whitesmoke);
    margin: 0;
    position: relative;
}

.section-about .about_title {
    background-image: url('../img/about-title.webp');
    background-size: cover;
    background-position: center 50%;
    color: var(--color-white);
    height: 60dvh;
    margin: 100px auto 50px auto;
    max-width: 1200px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.section-about .about_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section-about .about_title h3 {
    line-height: 1.1;
    position: relative;
    text-shadow: -6px 5px 3px var(--color-primary3);
    z-index: 2;
}

.section-about .about_content .section_container {
    height: 100%;
    width: 100%;
    
    display: grid;
    align-items: initial;
    gap: 50px;
    grid-template-columns: 1.1fr 1fr;
}

.section-about .about_content .about_image {
    width: 100%;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.section-about .about_content .about_image img {
    border-radius: 25px;
}

.section-about .about_content .about_subtitle {
    color: var(--color-primary1);
    padding-bottom: 15px;
}

.section-about .about_gallery .section_container {
    padding: 0 0 100px 0;

    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 20% 1fr 20%;
}

.section-about .about_gallery .about_gallery_image-1 {
    overflow: hidden;
    grid-column: 1;
    grid-row: 1 / 3;
}

.section-about .about_gallery .about_gallery_image-2 {
    overflow: hidden;
    grid-column: 2;
    grid-row: 2;
}

.section-about .about_gallery .about_gallery_image-3 {
    overflow: hidden;
    grid-column: 3;
    grid-row: 2 / 4;
}

.section-about .about_gallery video,
.section-about .about_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
}

/* Animaciones About */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-about .about_content .about_image img {
    opacity: 0;
    transform: translateY(50px);
}

.section-about .about_content .about_subtitle {
    opacity: 0;
    transform: translateY(50px);
}

.section-about .about_content .about_text p {
    opacity: 0;
    transform: translateY(50px);
}

.section-about .about_content .about_image img {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.section-about .about_content .about_subtitle {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.section-about .about_content .about_text p {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .section-about .about_content .about_image img,
    .section-about .about_content .about_subtitle,
    .section-about .about_content .about_text p {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-about .about_gallery .about_gallery_image-1,
.section-about .about_gallery .about_gallery_image-2,
.section-about .about_gallery .about_gallery_image-3 {
    opacity: 0;
    transform: translateY(50px);
}

.section-about .about_gallery.gallery-in-view .section_container .about_gallery_image-1 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.section-about .about_gallery.gallery-in-view .section_container .about_gallery_image-2 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.section-about .about_gallery.gallery-in-view .section_container .about_gallery_image-3 {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}





/* ------ Services Section ------ */
.section-services .services_title {
    background-image: url('../img/services-title.webp');
    background-size: cover;
    background-position: center 100%;
    color: var(--color-white);
    height: 60dvh;
    margin: 100px auto 50px auto;
    max-width: 1200px;
    position: relative;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.section-services .services_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad (0.1 a 0.8) */
    z-index: 1;
}

.section-services .services_title h3 {
    line-height: 1.1;
    position: relative;
    text-shadow: -6px 5px 3px var(--color-primary3);
    z-index: 2;
}

.section-services .services_title .subtitle_content {
    color: var(--color-white);
    font-style: normal;
    text-shadow: -4px 3px 3px var(--color-primary3);
    z-index: 2;
}

.section-services .services_content .section_container {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 2fr;
}

.section-services .services_content .subtitle_content {
    margin-bottom: 15px;
}

.section-services .services_content .services_image_mobile {
    display: none;
}

.section-services .services_content img {
    aspect-ratio: 3 / 2;
    border-radius: 25px;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.section-services .services_content .catering {
    background-color: var(--color-white);
}

.section-services .services_content .catering .section_container {
    grid-template-columns: 2fr 1fr;
}

.section-services .services_content .catering .services_image {
    order: 2;
}

.section-services .services_content .catering .services_description {
    order: 1;
}

.section-services .services_content-2 .section_container {
    padding: 0 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-services .services_content-2 img {
    height: clamp(12.5rem, 35vw + 0.25rem, 26.563rem);
    width: auto;
}

/* Animaciones Services */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-services .services_content .delivery .services_image img {
    opacity: 0;
    transform: translateY(50px);
}

.section-services .services_content .delivery .services_description .subtitle_content {
    opacity: 0;
    transform: translateY(50px);
}

.section-services .services_content .delivery .services_description p {
    opacity: 0;
    transform: translateY(50px);
}

.section-services .services_content .delivery .services_image img {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.section-services .services_content .delivery .services_description .subtitle_content {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.section-services .services_content .delivery .services_description p {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .section-services .services_content .delivery .services_image img,
    .section-services .services_content .delivery .services_description .subtitle_content,
    .section-services .services_content .delivery .services_description p {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}


@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-services .services_item.catering .services_image img,
.section-services .services_item.catering .services_description .subtitle_content,
.section-services .services_item.catering .services_description p {
    opacity: 0;
    transform: translateY(50px);
}

.section-services .services_item.catering.in-view .services_image img {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.section-services .services_item.catering.in-view .services_description .subtitle_content {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.section-services .services_item.catering.in-view .services_description p {
    animation: professionalSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .section-services .services_content .catering .services_image img,
    .section-services .services_content .catering .services_description .subtitle_content,
    .section-services .services_content .catering .services_description p {
        animation: fadeInOnly 0.2s ease-out forwards;
    }
}





/* ------ Menu Section ------ */
.section-menu .menu_title {
    background-image: url('../img/menu-title.webp');
    background-size: cover;
    background-position: center 100%;
    height: 60dvh;
    margin: 100px auto 50px auto;
    max-width: 1200px;
    position: relative;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.section-menu .menu_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Ajusta la opacidad (0.1 a 0.8) */
    z-index: 1;
}

.section-menu .menu_title h3 {
    color: var(--color-white);
    line-height: 1.1;
    position: relative;
    text-shadow: -6px 5px 3px var(--color-primary3);
    z-index: 2;
}

.section-menu .menu_tacos,
.section-menu .menu_drinks,
.section-menu .menu_content-2 {
    background-color: var(--color-white);
}

.section-menu .menu_content .menu_hotdogs .container,
.section-menu .menu_content .menu_snacks .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.section-menu .menu_content .menu_tacos .container,
.section-menu .menu_content .menu_drinks .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.section-menu .menu_content .menu_tacos .menu_image,
.section-menu .menu_content .menu_drinks .menu_image {
    order: 2;
}

.section-menu .menu_hotdogs .menu_image,
.section-menu .menu_tacos .menu_image,
.section-menu .menu_snacks .menu_image,
.section-menu .menu_drinks .menu_image {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section-menu .menu_content .menu_tacos .menu_description,
.section-menu .menu_content .menu_drinks .menu_description {
    order: 1;
}

.section-menu .menu_hotdogs .menu_description,
.section-menu .menu_tacos .menu_description,
.section-menu .menu_snacks .menu_description,
.section-menu .menu_drinks .menu_description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.section-menu .menu_content span {
    font-weight: bold;
}





/* ------ Contact Section ------ */
.section-contact .contact_title {
    background-image: url('../img/home-parallax.webp');
    background-size: cover;
    background-position: center 50%;
    height: 60dvh;
    margin: 100px auto 50px auto;
    max-width: 1200px;
    position: relative;
}

.section-contact .contact_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35); /* Ajusta la opacidad (0.1 a 0.8) */
    z-index: 1;
}

.section-contact .contact_data {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.section-contact .contact_data .container {
    padding: 0;
}

.section-contact .contact_data .contact_form {
    background-color: var(--color-primary2);
    border-radius: 25px;
    margin: 0 auto;
    padding: 100px 50px;
    width: 1024px;
}

.section-contact .contact_data .contact-data_title {
    color: var(--color-primary3);
    font-size: clamp(1.25rem, 2vw + 1.25rem, 2.5rem);
    letter-spacing: .2em;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

.section-contact .contact_data .contact-data_info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.section-contact .contact_data .contact-data_mail,
.section-contact .contact_data .contact-data_location,
.section-contact .contact_data .contact-data_phone {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-contact .contact_data .contact-data_info svg {
    height: 25px;
    width: 25px;
    fill: var(--color-primary3);
    stroke: none;
}

.section-contact .contact_data .contact-data_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-contact .contact-data_form .contact_form-group {
    display: flex;
    flex-direction: column;
}

.section-contact .contact-data_form .contact_form-row {
    display: flex;
    flex-direction: column;
}

.section-contact .contact-data_form .contact_form-group input,
.section-contact .contact-data_form .contact_form-group textarea {
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    padding: 15px 0;
    font-size: 16px;
    color: #8a8a8a;
    outline: none;
    transition: border-color 0.3s ease;
}

.section-contact .contact-data_form .contact_form-group input::placeholder,
.section-contact .contact-data_form .contact_form-group textarea::placeholder {
    color: #888;
    font-style: italic;
}

.section-contact .contact-data_form .contact_form-group input:focus,
.section-contact .contact-data_form .contact_form-group textarea:focus {
    border-bottom-color: #ccc;
}

.section-contact .contact-data_form .contact_form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.section-contact .contact-data_form .contact_submit-btn {
    align-self: center;
    background: #aca47a;
    color: var(--color-primary3);
    cursor: pointer;
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.section-contact .contact-data_form .contact_submit-btn:hover {
    background: var(--color-primary3);
    color: var(--color-whitesmoke);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 66, 114, 0.3);
}

.section-contact .success-message {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.section-contact .error-message {
    display: none;
    background: #ec5054;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.section-contact .contact_location iframe {
    height: 50dvh;
    width: 100%;
    margin-bottom: 100px;
}

.section-contact .contact_location .contact_chunky-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-contact .contact_location img {
    height: clamp(12.5rem, 35vw + 0.25rem, 26.563rem);
    width: auto;
}





/* ------ Footer ------ */
.footer {
    background-color: #181818;
    color: var(--color-whitesmoke);
    font-size: var(--font-text-s);
    position: static;
    width: 100%;
}

.footer .footer-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 100px 0 25px 0;
}

.footer .footer_logo {
    margin-bottom: 50px;
}

.footer .footer_logo img {
    height: 70px;
    width: auto;
}

.footer .footer_content {
    margin-bottom: 50px;

    display: grid;
    align-items: initial;
    gap: 60px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer .footer_content .description p,
.footer .footer_content .footer_title,
.footer .footer_content .footer_text,
.footer .footer_content .menu a {
    line-height: 1.6;
}

.footer .footer_block-1,
.footer .footer_block-2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer .footer_block-1 .address,
.footer .footer_block-2 .email,
.footer .footer_block-2 .phone,
.footer .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .footer_title {
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer .social-media {
    display: flex;
    gap: 20px;
}

.footer .social-media a {
    background-color: var(--color-whitesmoke);
    border-radius: 50%;
    color: var(--color-black2);
    height: 40px;
    width: 40px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-media a:hover {
    background-color: var(--color-primary3);
    color: var(--color-whitesmoke);
}

.footer .social-media svg {
    height: 18px;
    width: 18px;
}

.footer .copyright {
    text-align: center;
}

.footer .copyright a {
    color: #00ced1;
}

.footer .copyright .footer-text {
    margin-bottom: 6px;
}