/* Importo Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    /* Colores */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #473210;
    --secondary-color: #e1b113;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /*Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max widht */
    --site-max-widht: 1300px
}

html {
    scroll-behavior: smooth;
}

body {
    animation: aparicion 2s;
}

/* Estilo para toda la web*/
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-widht);
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* Estilo para el Navbar */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    display: block;
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/*---------------------------------------PAGINA HOME------------------------------------*/

/* slider secion styling */
.section-content .hero-detail {
    padding-left: 5%;
}

.section-content .hero-detail .slider {
    max-width: 500px;
    width: 82vw;
    height: auto;
    margin-top: 20px;
    overflow: hidden;
}

.section-content .hero-detail .slider .slider-track {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 20px;
    -webkit-animation: scroll 40s linear infinite;
    width: max-content;
    /*width: calc(100px * 44);*/
}

.section-content .hero-detail .slider .slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content .hero-detail .slider .slide img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Hero section styling */
.hero-section {
    padding-top: 40px;
    min-height: 100vh;
    background-image: url(/images/Fondo.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 300px;

}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
    /*flex-direction: row-reverse;*/
}

.hero-section .hero-detail {
    text-shadow: 2px 2px #333;
}

.hero-section .hero-detail .title {
    text-align: center;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-detail .subtitle {
    margin-top: 8px;
    max-width: 100%;
    font-size: var(--font-size-l);
    text-align: center;
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-detail .description {
    max-width: 100%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    text-align: center;
}

.hero-section .hero-detail .buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.hero-section .hero-detail .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;

    position: relative;
    /* Necesario para contener el ::before */
    overflow: hidden;
    /* Evita que el brillo se desborde */
}

.hero-section .hero-detail .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

.hero-section .hero-detail .button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 110px;
    background: linear-gradient(#e1b113, rgba(0, 0, 0, .3));
    border-radius: 50%;
    position: relative;
    /* Necesario para contener el ::before */
    overflow: hidden;
    /* Evita que el brillo se desborde */

    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 5s ease 0.3s forwards;
}

.hero-section .hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

/* --- SERVICIOS SECTION --- */
.threeholder {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.three {
    background: var(--primary-color);
    border-bottom: 15px solid var(--secondary-color);
    text-align: center;
    width: 300px;
    height: 500px;
    padding: 80px 20px 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.three:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    border-bottom: 15px solid var(--primary-color);
}

.circleborder {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    z-index: 2;
}

.circleborder img {
    width: 60%;
    height: auto;
    transition: transform 0.6s ease;
}

.circlepic {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    background: #5c5c5c;
    border-radius: 50%;
    z-index: 1;
}

.three:hover .circleborder img {
    transform: rotateY(360deg);
}

.three h4 {
    margin-top: 70px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.three p {
    margin-top: 10px;
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
}

.three:hover h4,
.three:hover p {
    color: var(--primary-color);
}

.three:hover .button {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
}

.three:hover .circlepic {
    background: var(--primary-color);
}

.button-vermas {
    margin-top: auto;
}

.button-vermas .button {
    box-shadow: 0 0 25px #000;
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.button-vermas .button:hover {
    color: var(--primary-color) !important;
    border-color: var(--white-color);
    background: transparent !important
}

/* --- ¿POR QUE ELEGIRNOS SECTION --- */
.porque-section {
    color: var(--white-color);
    padding: 80px 0;
    background-color: var(--primary-color);
}

.porque-details {
    max-width: 1100px;
    margin: 0 auto;
}

.porque-details .buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.porque-details .buttons .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.porque-details .buttons .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

.porque-details .buttons .button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.porque-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    position: relative;
}

.porque-item.invertido {
    flex-direction: row-reverse;
}

.porque-icon {
    width: 140px;
    height: 140px;
    border: 3px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.porque-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10%;
    transition: transform 0.6s ease;
}

.porque-icon:hover img {
    transform: rotateY(360deg);
}

.porque-line {
    flex: 0 0 40px;
    height: 2px;
    background: #ddd;
    position: relative;
    z-index: 1;
}

.porque-text {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 25px;
    width: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.porque-text h3 {
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 10px;
}

.porque-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* --- FAQ´S SECTION --- */
.FAQ-section {
    color: var(--dark-color);
    padding: 80px 0;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.FAQ-section .section-content,
.FAQ-section .FAQ-details {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.FAQ-section .section-title {
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 8px;
}

.container-accordion {
    width: 60%;
    margin: 0 auto;
    color: var(--primary-color);
}

.sub-titles {
    color: #6b3e26;
    /* Marrón */
    border-bottom: thin #bdc1c6 solid;
    text-align: left;
    margin: 15px 0;
}

.sub-titles img {
    transition: all .4s ease-in-out;
    width: 20px;
    height: 20px;
}

.sub-titles.active img {
    transform: rotate(180deg);
}

.sub-titles h3 {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 0;
    font-weight: 100;
    cursor: pointer;
}

.sub-titles .desplegar {
    color: var(--secondary-color);
    transition: all .3s ease-in-out;
    overflow: hidden;
    max-height: 0;
    text-shadow: 1px 1px 1px var(--primary-color);
}

.sub-titles.active .desplegar {
    max-height: none;
    overflow: none;
    padding: .7rem 0;
}

/* FOOTER SECTION */
.footer-section {
    padding: 20px 0;
    background: var(--primary-color);
    align-items: center;
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
    margin-right: -100px !important;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link {
    color: var(--secondary-color);
}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white-color);
}

/*---------------------------------------PAGINA NOSOTROS------------------------------------*/
.nosotros-section {
    color: var(--white-color);
    background-color: var(--primary-color);
    /* Fondo general (oscuro) */
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nosotros-section .section-content,
.nosotros-section .nosotros-details {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nosotros-section .section-title {
    padding-top: 20px;
    padding-bottom: 0px;
    margin-bottom: 8px;
}

/* Contenedor principal */
.nosotros-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 204, 0, 0.35);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Imagen circular con bordes concéntricos */
.nosotros-imagen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo-externo,
.circulo-intermedio,
.circulo-interno {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo-externo {
    width: 330px;
    height: 330px;
    border: 10px solid var(--secondary-color);
}

.circulo-intermedio {
    width: 280px;
    height: 280px;
    border: 10px solid var(--secondary-color);
}

.circulo-interno {
    width: 230px;
    height: 230px;
    overflow: hidden;
}

.circulo-interno img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

/* Texto */
.nosotros-texto {
    flex: 1;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
    color: #3a2b00;
    max-width: 600px;
    font-weight: 500;
}

.nosotros-texto strong {
    color: var(--secondary-color);
}

/* ===== SECCIÓN EL TALLER ===== */
.taller-section {
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    background: var(--light-pink-color);
    /* ajusta si quieres fondo distinto */
}

.section-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Contenedor principal: texto | imágenes */
.taller-container {
    display: flex;
    gap: 36px;
    align-items: stretch;
    /* importante: obliga a los hijos a igual altura */
    width: 100%;
}

/* ===== BLOQUE DE TEXTO (GLASS) ===== */
.glass {
    flex: 1 1 42%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-radius: 20px;
    padding: 34px;
    color: #2f1f12;
    /* texto marrón oscuro */
    font-size: 1rem;
    line-height: 1.7;
    box-shadow: 0 10px 30px var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.28);
    /* asegurar que tome la misma altura que la galería */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== GALERÍA: grid irregular alrededor del logo ===== */
.taller-imagenes {
    flex: 1 1 58%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 120px 180px 180px;
    gap: 18px;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: calc(120px + 180px + 180px + 36px);
    /* fuerza altura similar */
    /* Para que la .glass pueda usar align-items:stretch y quedar misma altura */
}

/* Grid areas approach (we assign by order with spans below) */
.taller-imagenes .item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--primary-color);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* cada item tendrá distinto tamaño visual mediante grid-row/column spans */
.item1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* top-left small */
.item2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* top-middle small */
.item3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* top-right small */

.item4 {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
}

/* left tall (2 rows) */
.logo {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* center (logo) */
.item5 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

/* right tall (2 rows) */

.item6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* bottom middle small */

/* imágenes */
.taller-imagenes .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
    border-radius: 12px;
}

/* logo centrado circular y con borde */
.taller-imagenes .logo {
    background: transparent;
    border-radius: 50%;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    /*border: 5px solid rgba(183, 130, 0, 0.95);*/
    /* borde cálido */
    overflow: visible;
}

/*.taller-imagenes .logo img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
}*/

/* hover */
/*.taller-imagenes .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.taller-imagenes .item img:hover {
    transform: scale(1.03);
}*/

/* Ajustes finos: adaptar alturas de los elementos internos */
.item1,
.item2,
.item3 {
    min-height: 120px;
}

.item4,
.item5 {
    min-height: 360px;
}

/* ocupan 2 filas => visual más grande */
.item6 {
    min-height: 140px;
}

/* Igualar altura: si por alguna razón la galería queda más alta que el .glass,
   .glass stretchará (por align-items:stretch del padre). Si quieres forzar una
   altura exacta: se puede usar height: 680px en .taller-imagenes y .glass. */

/* Responsive media query code for widht 1024px */



/* TESTIMONIOS SECTION */

.testimonios-section {
    color: var(--white-color);
    padding: 20px 0;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonios-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}

.testimonios-section .testimonios {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonios-section .testimonios .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}

.testimonios-section .testimonios .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonios-section .testimonios .feedback {
    line-height: 25px;
}

.testimonios-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonios-section .swiper-slide-button {
    margin-top: -100px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonios-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

/*---------------------------------------PAGINA SERVICIOS------------------------------------*/

/* SERVICIOS SECTION */

.servicio-section {
    padding-top: 45px;
    background: linear-gradient(45deg, #302305, #704E05, #e1b113);
    background-size: 300% 300%;
    animation: fondo-color 15s ease-in-out infinite;
}

.section-content .servicio-detail .slider {
    max-width: 800px;
    width: 82vw;
    height: auto;
    margin-top: 20px;
    overflow: hidden;
}

.section-content .servicio-detail .slider .slider-track {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 20px;
    -webkit-animation: scroll 40s linear infinite;
    width: max-content;
    /*width: calc(100px * 44);*/
}

.section-content .servicio-detail .slider .slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content .servicio-detail .slider .slide img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.servicio-section .section-content {
    padding: 0;
    margin: 0;
    padding-top: 40px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
    flex-direction: row-reverse;
}

.servicio-section .servicio-detail {
    text-shadow: 2px 2px #333;
    padding-bottom: 80px;
}

.servicio-section .servicio-detail .title {
    text-align: center;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}

.servicio-section .servicio-detail .subtitle {
    margin-top: 8px;
    max-width: 100%;
    font-size: var(--font-size-l);
    text-align: center;
    font-weight: var(--font-weight-semibold);
}

.servicio-section .servicio-detail .description {
    max-width: 100%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    text-align: center;
}

.servicio-section .servicio-detail .buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.servicio-section .servicio-detail .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    position: absolute;
    overflow: hidden;
}

.servicio-section .servicio-detail .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

.servicio-section .servicio-detail .button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: var(--primary-color);
}

.servicio-section .servicio-image-wrapper {
    position: relative;
    width: 100vw;
    /* ocupa la mitad de la pantalla */
    height: 100vh;
    /* ocupa toda la altura visible */
    overflow: hidden;
    /* oculta el recorte diagonal */
    margin: 0;
    /* sin márgenes */
    padding: 0;
    left: 0;
    right: 0;
    align-self: stretch;
    /* se estira verticalmente con el contenedor */
}

.servicio-section .servicio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* mantiene proporciones y rellena */
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    /* 🔺 diagonal derecha */
}

/* ======== SECCIÓN DE MANTENIMIENTO ======== */

.paralelogramas-section {
    margin-top: -160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 90px;
    min-height: 100vh;
}

/* --- Glass text panel --- */
.glass-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #111;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.glass-text p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.mantenimiento-section .paralelogramas-section .glass-text .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mantenimiento-section .paralelogramas-section .glass-text .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

.mantenimiento-section .paralelogramas-section .glass-text .button:hover {
    color: var(--secondary-color);
    border-color: var(--primary-color);
    background: transparent;
}

/* --- Imagenes en forma de paralelogramo --- */
.paralelogramas {
    display: flex;
    gap: 20px;
    flex: 2;
    justify-content: flex-end;
}

.paralelogram {
    width: 200px;
    height: 400px;
    overflow: hidden;
    transform: skew(-5deg);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.paralelogram img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    transform: skew(5deg) translateX(-7%);
}

/* ======== SECCIÓN DE REPARACIONES ======== */
/* tiene el mismo contenido que MANTENIMIENTO SECTION */

.reparaciones-section {
    color: var(--white-color);
    padding-top: 40px;
    background-color: var(--primary-color);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
}

.reparaciones-section .paralelogramas-section {
    flex-direction: row-reverse;
}

.reparaciones-section .paralelogramas-section .paralelogram {
    width: 200px;
    height: 400px;
    overflow: hidden;
    transform: skew(5deg);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.reparaciones-section .paralelogramas-section .paralelogram img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    transform: skew(-5deg) translateX(-5%);
}

.reparaciones-section .paralelogramas-section .glass-text .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reparaciones-section .paralelogramas-section .glass-text .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

/* ======== SECCIÓN DE REPARACIONES ======== */
.revisiones-section .paralelogramas-section .glass-text .button {
    box-shadow: 0 0 25px #000;
    text-shadow: none;
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.revisiones-section .paralelogramas-section .glass-text .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skew(-25deg);
    animation: scan 5s infinite;
}

/* ======== SECCIÓN DE PASOS PARA RESERVAR ======== */
.pasos-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    margin: 100px auto;
    text-align: center;
    position: relative;
    overflow: visible;
    /* permitimos que las animaciones no queden cortadas */
    padding: 40px 20px;
}

/* --- Estado inicial (invisible y desplazado) --- */
.paso {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.paso img {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
}

.paso h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 1px;
    margin: 0;
}

/* --- Cuando aparece en pantalla: visibilidad básica --- */
.paso.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones específicas por dirección (añaden un slide más "característico") */
.paso-1.visible {
    animation: slideFromLeft 0.9s cubic-bezier(.22, .9, .35, 1) forwards;
}

.paso-2.visible {
    animation: slideFromBottom 0.9s cubic-bezier(.22, .9, .35, 1) forwards;
}

.paso-3.visible {
    animation: slideFromRight 0.9s cubic-bezier(.22, .9, .35, 1) forwards;
}

/*---------------------------------------PAGINA CONTACTO------------------------------------*/

/* CONTACTO SECTION */
.contacto-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.contacto-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contacto-section .contacto-info-list .contacto-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contacto-section .contacto-info-list .contacto-info i {
    font-size: var(--font-size-m);
}

.contacto-section .contacto-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}

.contacto-section .contacto-form {
    max-width: 50%;
}

.contacto-section .contacto-form .form-input:focus {
    border-color: var(--secondary-color);
}

.contacto-section .contacto-form textarea.form-input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contacto-section .contacto-form .submit-button {
    box-shadow: 0 0 25px #000;
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.contacto-section .contacto-form .submit-button:hover {
    color: var(--primary-color);
    background: transparent;
}

/* MAPAS SECTION */

.section-mapas {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.section-mapas .content-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    /* evita que se apilen */
    gap: 0;
    /* sin espacio entre mapas */
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-mapas .content-section iframe {
    flex: 1;
    /* cada mapa ocupa el 50% exacto del ancho */
    width: 50%;
    height: 60vh;
    /* altura base (60% de la pantalla) */
    border: none;
    margin: 0;
    padding: 0;
    display: block;
}

/* ---------------------------------PAGINA RESERVAS------------------------------------*/

.reserva-section {
    padding-top: 50px;
    background: var(--light-pink-color);
}

.reserva-turno {
    --amarillo: #f6c542;
    --marron: #5a3b1b;
    --bg: #fff8ef;
    --card: #fff;
    --border: #f2e6d3;
    display: flex;
    justify-content: center;
    background: var(--bg);
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px 10px 50px;
    background: var(--light-pink-color);
    margin-top: -50px;
}

.reserva-turno * {
    box-sizing: border-box;
}

.reserva-card {
    display: flex;
    gap: 20px;
    background: var(--card);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    width: 100%;
}

.reserva-calendar {
    width: 340px;
}

.reserva-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reserva-cal-header button {
    background: var(--marron);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.reserva-month-title {
    font-weight: 700;
    color: var(--marron);
    text-transform: capitalize;
}

.reserva-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.reserva-weekday {
    font-size: 12px;
    text-align: center;
    color: #777;
}

.reserva-day {
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reserva-day:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.reserva-day.out {
    color: #bbb;
    cursor: default;
}

.reserva-day.today {
    border: 2px solid var(--amarillo);
    background: linear-gradient(180deg, #fff5d6, white);
}

.reserva-day.selected {
    background: var(--amarillo);
    color: var(--marron);
    font-weight: 600;
}

/* Slots */
.reserva-slots {
    flex: 1;
}

.reserva-slots h3 {
    margin: 0 0 8px 0;
    color: var(--marron);
}

.reserva-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 420px;
    overflow: auto;
    padding-right: 6px;
    margin-bottom: 12px;
}

.slot {
    background: var(--card);
    border: 2px solid var(--border);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.slot.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f2f2f2;
}

.slot input {
    transform: scale(1.05);
}

.reserva-turno form {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.reserva-turno input[type="text"],
.reserva-turno input[type="tel"],
.reserva-turno input[type="email"] {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.reserva-turno button[type="submit"] {
    background: var(--amarillo);
    color: var(--marron);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.msg {
    padding: 10px;
    border-radius: 6px;
    margin-top: 8px;
    display: none;
}

.msg.success {
    background: #e9f8ef;
    color: #0b6330;
}

.msg.error {
    background: #ffe8e8;
    color: #8a1c1c;
}

.reserva-small-note {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

.day {
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.day:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.day.out {
    color: #bbb;
    cursor: default;
}

.day.today {
    border: 2px solid var(--amarillo);
    background: linear-gradient(180deg, #fff5d6, white);
}

.day.selected {
    background: var(--amarillo);
    color: var(--marron);
    font-weight: 600;
}


/* Responsive media query code for widht 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--dark-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .navbar .nav-item .nav-sub-menu {
        display: none !important;
        /* oculta todos los submenús */
    }

    /* HERO SECTION */
    .hero-section {
        padding: 20px 5px 20px 5px;
        flex-direction: column-reverse;
        gap: 50px;
        background-image: url(/images/fondo_pequeña.png);
        background-attachment: scroll;
        /* Desactiva el fixed para móviles */
        background-position: top center;
        /* Alinea la imagen hacia la parte superior */
        height: auto;
        /* Hace que la altura se ajuste al contenido */
    }

    .hero-section .hero-image-wrapper .hero-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
        align-items: center;
        background-size: cover;
    }

    .hero-section .section-content {
        gap: 0px;
        text-align: center;
        padding: 0px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-detail .title {
        font-size: 40px;
    }

    .hero-section .hero-detail .subtitle {
        font-size: 20px;
    }

    .hero-section .hero-detail :is(.subtitle, .description),
    .nosotros-section .nosotros-details,
    .contacto-section .contacto-form {
        max-width: 100%;
    }

    .hero-section .hero-detail .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .section-content .hero-detail .slider .slide img {
        height: 25px;
        width: auto;
    }

    .section-content .hero-detail .slider .slider-track {
        animation-duration: 20s;
    }

    /* SERVICIOS SECTION */
    .threeholder {
        gap: 25px;
        max-width: 100%;
        padding: 30px 0;
    }

    .three {
        width: 45%;
        /* dos por fila */
        min-width: 260px;
        padding: 70px 15px 35px;
    }

    .three h4 {
        font-size: 15px;
        margin-top: 65px;
    }

    .three p {
        font-size: 12px;
    }

    /* PORQUE SECTION */

    .porque-section {
        padding-top: 20px;
    }

    .porque-item {
        display: flex;
        /* asegurar que sea flex */
        flex-direction: column !important;
        /* forzar columna */
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-top: 0px;
    }

    /* Forzar orden: icono arriba, línea en medio, texto abajo */
    .porque-item .porque-icon {
        order: 1;
        margin: 0;
    }

    .porque-item .porque-line {
        order: 2;
        width: 2px;
        height: 40px;
        background: #ddd;
        margin: 0 auto;
    }

    .porque-item .porque-text {
        order: 3;
        width: 90%;
        margin: 0 auto;
    }

    .porque-icon img {
        width: 85%;
        height: 85%;
        object-fit: contain;
        display: block;
    }

    .porque-text h3 {
        margin-top: 0;
    }

    /* FAQ´S SECTION */

    .sub-titles {
        margin: 25px 0;
        /* 👈 más separación entre bloques */
        padding-bottom: 10px;
        transition: all 0.3s ease;
    }

    .container-accordion {
        width: 90%;
    }

    /* NOSOTROS SECTION */
    .nosotros-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .nosotros-texto {
        text-align: justify;
    }

    /* TALLER SECTION */
    .taller-container {
        flex-direction: column-reverse;
        gap: 22px;
    }

    .glass {
        order: 1;
        width: 100%;
        padding: 26px;
    }

    /* convertimos la galería a 2 columnas, items se reordenan para leer bien */
    .taller-imagenes {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .item1 {
        grid-column: 1 / 2;
        grid-row: 1;
        height: 140px;
    }

    .item2 {
        grid-column: 2 / 3;
        grid-row: 1;
        height: 140px;
    }

    .item3 {
        grid-column: 1 / 2;
        grid-row: 2;
        height: 140px;
    }

    .logo {
        grid-column: 2 / 3;
        grid-row: 2;
        width: 140px;
        height: 140px;
        justify-self: center;
        align-self: center;
        border-width: 6px;
    }

    .item4 {
        grid-column: 1 / 2;
        grid-row: 3;
        height: 160px;
    }

    .item5 {
        grid-column: 2 / 3;
        grid-row: 3;
        height: 160px;
    }

    .item6 {
        grid-column: 1 / 3;
        grid-row: 4;
        height: 140px;
    }

    .taller-imagenes .logo img {
        width: 80%;
        height: 80%;
    }

    .taller-imagenes .item img {
        object-position: center top;
    }

    /*TESTIMONIOS SECTION */
    .testimonios-section {
        padding: 20px 0px;
    }

    .testimonios-section .slider-wrapper {
        margin: 0 40px 40px;
    }

    .testimonios-section .testimonios {
        padding: 20px 10px;
    }

    .testimonios-section .testimonios .user-image {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }

    .testimonios-section .testimonios .name {
        font-size: 1rem;
    }

    .testimonios-section .testimonios .feedback {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
        max-width: 100%;
        text-align: left;
    }

    .testimonios-section .swiper-slide-button {
        margin-top: -80px;
    }

    /* SERVICIOS SECTION */

    .servicio-section .servicio-detail {
        padding: 30px 30px 50px 30px;
    }

    .servicio-section .section-content {
        flex-direction: column;
    }

    .servicio-section .section-content .servicio-detail .title {
        padding-top: 50px;
        font-size: 40px;
    }

    .servicio-section .servicio-image-wrapper {
        width: 100%;
        height: 300px;
    }

    .servicio-section .servicio-image {
        clip-path: none;
        /* elimina el recorte en móviles */
    }

    /* MANTENIMIENTO SECTION */

    .mantenimiento-section {
        padding-top: 40px;
    }

    .paralelogramas-section {
        margin-top: -40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
        min-height: auto;
    }

    /* --- Panel de texto tipo glass --- */
    .glass-text {
        width: 90%;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 20px;
        padding: 25px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #111;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .glass-text p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* --- Contenedor de paralelogramos --- */
    .paralelogramas {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    /* --- Paralelogramos individuales --- */
    .paralelogram {
        width: 100px;
        height: 200px;
        transform: skew(-5deg);
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    .paralelogram img {
        width: 120%;
        height: 100%;
        object-fit: cover;
        transform: skew(5deg) translateX(-7%);
    }

    /*REPARACIONES SECTION */
    .reparaciones-section {
        padding-top: 40px;
    }

    .reparaciones-section .paralelogramas-section {
        margin-top: -60px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
        min-height: auto;
    }

    /* --- Paralelogramos individuales --- */
    .reparaciones-section .paralelogramas-section .paralelogram {
        width: 100px;
        height: 200px;
        transform: skew(5deg);
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    /*REVISIONES PRE VTV SECTION */
    .revisiones-section {
        padding-top: 40px;
    }

    /* CONTACTO SECTION */

    .contacto-section {
        max-width: 100%;
    }

    .contacto-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }

    .pasos-section {
        gap: 30px;
        padding: 30px 10px;
        flex-direction: column;
        align-items: center;
    }

    /* MAPAS SECTION */

    .section-mapas .content-section iframe {
        height: 40vh;
    }

    /* FOOTER SECTION */

    .footer-section .social-link-list {
        margin-right: -0px !important;
    }

    /* RESERVAS CETION*/

    .reserva-turno {
        padding: 15px 20px;
    }

    .reserva-card {
        flex-direction: column;
    }

    .reserva-calendar {
        width: 100%;
    }

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

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Responsive media query code for widht 640px */
@media screen and (max-width: 640px) {
    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item,
    .show-section .show-list .show-item {
        width: 100%;
    }

    .threeholder {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .three {
        width: 85%;
        max-width: 340px;
        padding: 80px 25px 45px;
    }

    .circleborder {
        width: 90px;
        height: 90px;
        top: -30px;
    }

    .circlepic {
        display: none;
    }

    .three h4 {
        font-size: 16px;
        margin-top: 70px;
    }

    .three p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/*EFECTO APARICION PAGINA*/

@keyframes aparicion {
    0% {
        opacity: 0;
        transform: scale(1.02);
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/*EFECTO BACKGROUND MANTENIMIENTO-SECTION*/

@keyframes fondo-color {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

@keyframes scan {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Pasos para reservar - Keyframes */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) translateY(40px) scale(0.98);
    }

    60% {
        transform: translateX(10px) translateY(-6px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(120px) translateY(40px) scale(0.98);
    }

    60% {
        transform: translateX(-10px) translateY(-6px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.98);
    }

    60% {
        transform: translateY(-8px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 2;
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}