@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'EdgecuttingLiteMedium';
    src: url('../fonts/EdgecuttingLiteMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EdgecuttingLiteSharp';
    src: url('../fonts/EdgecuttingLiteSharp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EdgecuttingLiteTight';
    src: url('../fonts/EdgecuttingLiteTight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --color-primario: #000000;
    --color-secundario: #ffffff;
    --color-texto1: #000000;
    --color-texto2: #ffffff;
    --color-hoverWhatsapp: #1ebe5d;
    --color-fondo: #ffffff;
    --accent-dark: #000000;
    --accent-gray: #1a1a1a;
    --gray-soft: #f8f9fa;
    --gray-border: #e2e2e2;
    --text-main: #1a1a1a;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --container-max-width: 1400px;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-fondo);
    color: var(--color-texto1);
    overflow-x: hidden;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ================= LOADER ================= */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-primario);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}
.loader__img {
    width: 20%;
    height: auto;
    animation: bounceExpand 2.8s ease-in-out forwards;
    opacity: 1;
}

@keyframes bounceExpand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
    70% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}
body.loaded .loader {
    animation: fadeOut 0.3s ease-in-out forwards;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        display: none;
    }
}

/* ========== HEADER ========== */
.containerHeader__fluid {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5; 
    pointer-events: none; 
}

.containerHeader__fluid a, 
nav a,
.navbar a {
    pointer-events: auto;
}

.site__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px; 
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
                background-color 0.4s ease-in-out,
                box-shadow 0.4s ease-in-out;
}

.site__header.scrolled {
    height: 80px;
    background-color: var(--color-secundario);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.container__fluid {
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background: url("../img/LOGOS/logoBlanco.png") no-repeat center / contain;
    width: 200px;
    height: 110px;
    text-indent: -9999px; 
    overflow: hidden;
}

.site__header.scrolled .logo {
    width: 180px;
    height: 100px;
    background: url("../img/LOGOS/logoNegro.png") no-repeat center / contain;
}

.nav__menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: auto;
    padding-right: 50px;
    transition: all 0.4s ease-in-out;
}

.nav__menu a {
    color: #ffffff; 
    font-size: clamp(1rem, .9vw, 1.5rem); 
    text-decoration: none;
    position: relative;
    padding-top: 5px;
    display: inline-block;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.site__header.scrolled .nav__menu {
    gap: 25px;
}

.site__header.scrolled .nav__menu a {
    font-size: 16px;
    color: var(--color-primario);
}

.nav__menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    top: 0; 
    left: 50%;
    background-color: currentColor; 
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav__menu a:hover::after {
    width: 100%; 
}

.nav__menu:hover a {
    opacity: 0.5;
    filter: blur(0.5px); 
}

.nav__menu a:hover {
    opacity: 1;
    filter: blur(0px);
    letter-spacing: 3px;
    transform: translateY(2px); 
}

.toggle_btn {
    color: var(--color-secundario);
    font-size: 2.5rem;
    cursor: pointer;
    display: none;
    pointer-events: auto;
}

.site__header.scrolled .toggle_btn {
    color: var(--color-primario);
}

.dropdown_menu {
    position: absolute;
    right: 1.5rem;
    top: 90px;
    width: clamp(250px, 80vw, 350px);
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: auto; 
    z-index: 1000; 
}

.dropdown_menu.open {
    visibility: visible;
    opacity: 1;
    max-height: 300px;
    top: 85px;
}

.dropdown_menu li {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown_menu a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
}

@media (max-width: 1050px) {
    .nav__menu {
        display: none;
    }
    .toggle_btn {
        display: block;
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }
}

@media (max-width: 500px) {
    .dropdown_menu {
        right: 5%;
        left: 5%;
        width: 90%;
    }
    .containerHeader__fluid {
        padding: 0 1rem;
    }
}

/* SECCION MAIN */
/* .main__section {
    background-image: url(../img/PORTADA/Portada-1.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; 
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} */
.main__section {
    background-color: #000000; 
    width: 100%;
    height: 100vh; 
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1; 
}

.container__portada {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    gap: clamp(2rem, 5vh, 5rem); 
    padding-top: 20px; 
}

.texto__portada {
    color: white;
    text-align: center;
    z-index: 2;
}

.texto__portada h2 {
    font-size: clamp(2.5rem, 8vw, 5.5rem); 
    letter-spacing: clamp(2px, 0.5vw, 5px);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.texto__portada h3 {
    font-size: clamp(0.9rem, 2.5vw, 2.2rem);
    letter-spacing: clamp(5px, 1.5vw, 18px);
    opacity: 0.8;
}
.simbolo__container {
    width: clamp(70px, 10vw, 130px);
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.simbolo__portada {
    width: 100%; 
    height: auto;
    max-height: 20vh; 
    object-fit: contain;
}

@media (max-height: 750px) and (min-width: 769px) {
    .texto__portada h2 {
        font-size: clamp(2.5rem, 8vh, 4rem); 
    }
    .texto__portada h3 {
        font-size: 1.1rem;
        letter-spacing: 8px;
    }
    .container__portada {
        gap: 1rem; 
    }
    .simbolo__container {
        width: 70px; 
    }
}

@media (max-width: 1024px) {
    .container__portada {
        gap: 2.5rem;
    }
}

@media (max-width: 500px) {
    .main__section {
        padding-top: 60px; 
    }

    .container__portada {
        justify-content: center;
        gap: 1.5rem; 
    }

    .texto__portada h2 {
        font-size: clamp(2rem, 12vw, 3.2rem); 
        line-height: 1.1;
    } 
    
    .texto__portada h3 {
        font-size: 0.9rem;
        letter-spacing: 5px; 
        width: 100%;
        margin: 0 auto;
    }

    .simbolo__container {
        width: 60px;
        margin-top: 0.5rem;
    }
}

@media (min-width: 1900px) {
    .texto__portada h2 {
        font-size: 7.5rem;
    }
    .texto__portada h3 {
        font-size: 3rem;
        letter-spacing: 24px;
    }
}

/* SECCION SERVICIOS */
.containerService__fluid {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.servicios-acordeon {
    padding: clamp(5rem, 10vh, 12rem) 0;
    background-color: var(--color-fondo);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servicios__intro {
    width: 45%;
    margin-bottom: 3.75rem; 
}

.servicios__intro h2 {
    /* font-size: 3.5rem; */
    font-size: clamp(3rem, 3vw, 5rem);
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 1.2rem; 
    color: var(--accent-dark);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 0.07rem var(--accent-dark);
    font-weight: 800;
}

.servicios__intro p {
    /* font-size: 1rem; */
    font-size: clamp(1rem, .9vw, 1rem);
    color: rgb(117, 117, 117);
    line-height: 1.4;
}

.servicios__card-container {
    background-color: var(--gray-soft);
    border-radius: 2rem;
    padding: 2.5rem 3.125rem;
    padding: clamp(0rem, 2vh, 3rem) clamp(2.5rem, 5vw, 3rem);
    width: 100%;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.2);
    margin-top: 3.125rem; 
    overflow: visible; 
}

.servicios__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* gap: 3.125rem; */
    gap: clamp(3rem, 3vw, 4rem);
    align-items: start;
}

.acordeon__item {
    border-bottom: 0.0625rem solid var(--gray-border);
    width: 100%;
}

.acordeon__header {
    padding: 1.125rem 0;
    /* font-size: 1.15rem; */
    font-size: clamp(1.1rem, 1vw, 1.3rem);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
    font-weight: bold;
    transition: var(--transition-smooth);
}

.acordeon__item.active .acordeon__header {
    color: var(--accent-dark);
    font-weight: 700;
}

.acordeon__item i { 
    transition: transform 0.4s ease; 
}

.acordeon__item.active i { 
    transform: rotate(-90deg);
    color: var(--accent-dark); 
}

.acordeon__content {
    display: none;
    opacity: 0;
}

.acordeon__item.active .acordeon__content {
    display: block;
    opacity: 1;
    padding-bottom: 1.25rem;
}

.lista-servicios {
    list-style: none;
    padding: 0;
}

.lista-servicios li {
    color: rgb(117, 117, 117);
    font-size: 1rem;
    font-size: clamp(0.9rem, .5vw, .8rem);
    display: flex;
    align-items: center;
}

.lista-servicios li::before {
    content: "•";
    margin-right: 0.625rem;
    color: rgb(117, 117, 117);
    padding-left: 1.5rem;
}

.servicios__panel {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.panel__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: -6.875rem;
}

.panel__media {
    width: 100%;
    height: 22rem; 
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel__media img {
    width: auto;
    height: 100%;
    max-width: 90%;
    object-fit: contain;
    z-index: 3;
    position: absolute;
    filter: drop-shadow(0 1.25rem 1.875rem rgba(0,0,0,0.15));
}

.panel-servicio-img {
    width: auto;
    height: 100%;
    max-width: 90%;
    object-fit: contain;
    z-index: 3;
    position: absolute;
    filter: drop-shadow(0 1.25rem 1.875rem rgba(0,0,0,0.15));
    opacity: 0;
    visibility: hidden;
    transition: none !important; 
}
.panel-servicio-img.active {
    opacity: 1;
    visibility: visible;
}

.panel-servicio-img.active {
    opacity: 1;
    visibility: visible;
}

.panel-servicio-img.animated {
    animation: fadeInService 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInService {
    from { 
        opacity: 0; 
        transform: translateY(15px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

#panel-texto {
    font-size: 0.9rem;
    font-size: clamp(0.9rem, .5vw, .9rem);
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    min-height: 6.25rem;
    text-align: left;
}

.panel__btn-container {
    align-self: flex-start;
    display: inline-block;
}

.panel__btn {
    align-self: flex-start;
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border-radius: 1rem; 
    font-size: 0.8rem;
    font-size: clamp(0.8rem, .6vw, .8rem);
    transition: var(--transition-smooth);
}

.panel__btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0.3125rem 0.9375rem var(--text-main);
    background: #ffffff;
    color: #000000;
}

.btn-mobile { 
    display: none; 
}

.blob-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18.75rem;
    height: 20rem;
    background: #e5e5e5;
    z-index: 2;
    animation: liquid 12s linear infinite;
    transform-origin: center;
}

@keyframes liquid {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
    }
    66% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.animated {
    animation: fadeInShort 1.2s ease forwards;
}

@keyframes fadeInShort {
    from { opacity: 0; transform: translateY(15rem); } 
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1500px) {
    .containerService__fluid { max-width: 90%; }
    
    .servicios__intro { width: 60%; }

    .panel__info { margin-top: 0; } 
    
    .servicios__panel { width: 90%; }
    
    .panel__media { height: 15.625rem; } 
    
    .panel__media img { max-width: 550px; }

    .blob-decor {
        width: 15.625rem; 
        height: 15.625rem;
    }
}

@media (max-width: 1050px) {
    .servicios__intro { width: 100%; }
    .panel__media img { max-width: 450px; }
    .blob-decor {
        width: 13.75rem; 
        height: 13.75rem;
    }
}

@media (max-width: 900px) {
    .servicios-acordeon { padding: 4rem 0; }

    .servicios__intro {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .servicios__intro h2 { 
        font-size: 2.2rem; 
        text-align: center;
    }

    .servicios__intro p {
        margin: 0 auto;
        max-width: 90%;
    }

    .servicios__card-container {
        padding: 1.875rem 1.25rem;
        margin-top: 1.25rem;
        overflow: hidden; 
    }

    .servicios__wrapper {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }

    .servicios__panel {
        display: none; 
    }

    .panel__btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .btn-mobile { 
        display: block; 
        width: 200px; 
        margin: 2rem auto 0 auto;
        text-align: center;
    }

}

@media (max-width: 500px) {
    .containerService__fluid { 
        max-width: 100%; 
    }

    .servicios__intro {
        width: 100%;
    }

    .servicios__intro h2 { 
        font-size: 2rem; 
    }

    .servicios__intro p {
        max-width: 100%;
        font-size: .9rem;
    }

    .lista-servicios li {
        margin-bottom: 0.5rem;
    }
}


/* SECCION METODO */
.containerMetodo__fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.metodo {
    padding: clamp(6rem, 12vh, 12rem) 0;
    background: linear-gradient(
        to bottom, 
        #ffffff 0%,       
        #F5F5F5 5%,       
        #f5f5f5 100%      
    ); 
    width: 100%;
    position: relative;
}

.metodo__title {
    text-align: center;
    margin-bottom: clamp(4rem, 8vh, 6rem);
}

.metodo__title h2 {
    font-size: clamp(3rem, 3vw, 5rem);
    letter-spacing: -1px; 
    color: var(--accent-dark);
    text-transform: uppercase;
}

.metodo__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    width: 100%;
}

.metodo__card {
    position: relative;
    background: #ffffff; 
    padding: 3rem 2.2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metodo__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-dark);
}

.metodo__number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #e2e2e2;
    letter-spacing: 1px;
}

.metodo__icon-wrapper {
    width: clamp(120px, 10vw, 160px);
    height: auto;
    margin-bottom: 1.5rem;
    filter: grayscale(1); 
    transition: var(--transition-smooth);
}

.metodo__card:hover .metodo__icon-wrapper {
    filter: grayscale(0); 
    transform: scale(1.05);
}

.metodo__icon-wrapper img {
    width: 100%;
    height: auto;
}

.metodo__card p {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: #444;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .containerMetodo__fluid {
        width: 80%;
    }
    .metodo__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .containerMetodo__fluid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .containerMetodo__fluid {
        padding: 1rem;
    }

    .metodo {
        padding: 5rem 0;
        overflow: hidden; 
    }
    
    .metodo__title h2 {
        width: 80%;
        margin: 0 auto;
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .metodo__grid {
        display: flex; 
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: .5rem;
        padding: 1rem 1.5rem 4rem 1.5rem;
        scrollbar-width: none; 
        -webkit-overflow-scrolling: touch;
    }

    .metodo__grid::-webkit-scrollbar {
        display: none; 
    }

    .metodo__card {
        flex: 0 0 80%; 
        scroll-snap-align: center;
        padding: 3rem 1.5rem;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                    opacity 0.6s ease;
        opacity: 0.4;
        transform: scale(0.9);
        border-color: var(--gray-border);
    }

    .metodo__icon-wrapper {
        width: 140px; 
        height: auto;
        margin: 0 auto 1.5rem;
        filter: grayscale(0); 
    }

    .metodo__icon-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain; 
    }

    .metodo__card p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* SECCION TESTIMONIOS */
.testimonios {
    padding: clamp(6rem, 12vh, 12rem) 0;
    background: linear-gradient(
        to bottom, 
        #f5f5f5 0%,       
        #ffffff 5%,       
        #ffffff 100%      
    ); 
    width: 100%;
    overflow: hidden;
}

.containerTestimonios__fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.testimonios__title {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

.testimonios__title h2 {
    font-size: clamp(3rem, 3vw, 5rem);
    text-transform: uppercase;
    color: #000;
}

.swiper-testimonios {
    overflow: hidden !important; 
    padding-bottom: 80px !important;
    position: relative;
}

.testimonio__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    cursor: grab;
}

.testimonio__card {
    background: #fff;
    border: 2px solid #e8e8e8;
    padding: clamp(2rem, 4vw, 3.5rem) 2rem;
    text-align: center;
    position: relative;
    border-radius: .4rem;
    margin-bottom: 2.5rem;
    min-height: 350px; 
    height: 100%; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.testimonio__author h4 {
    display: block;
    font-style: italic;
}

.testimonio__author small {
    font-size: 0.9rem;
    color: #777;
    display: block;
    font-style: italic;
}

.testimonio__card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: #fff;
    border-right: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
}

.swiper-slide {
    height: auto;
}

.testimonio__quote {
    font-size: 2.5rem; 
    color: #6b6b6b; 
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonio__card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.testimonio__author {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author__logo img {
    width: 130px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: 0.4s ease;
}

.testimonio__author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #000;
}

.swiper-pagination {
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
}


.swiper-pagination-bullet {
    width: 12px; 
    height: 12px;
    background-color: #000;
    opacity: 0.15; 
    border-radius: 50%; 
    transition: all 0.3s ease;
    margin: 0;
}

.swiper-pagination-bullet-active {
    opacity: 1; 
    background-color: #000 !important;
    transform: scale(1.3); 
}

@media (max-width: 768px) {
    .testimonios { 
        padding: 4rem 0; 
    }
}


/* SECCION CONTACTO */
.contacto {
    padding: clamp(6rem, 15vh, 12rem) 0;
    background-color: var(--accent-dark);
    width: 100%;
    color: #ffffff;
}

.containerContacto__fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contacto__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: clamp(4rem, 8vw, 10rem);
    align-items: center;
}

.contacto__info {
    text-align: left;
}

.contacto__info h2 {
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
}

.text-outline-white {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    font-weight: 800;
}

.contacto__info p {
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.contacto__extra-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    border-left: 2px solid #ffffff;
    padding-left: 1.5rem;
}

.contacto__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form__row {
    display: flex;
    gap: 2rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.form__group.full-width {
    width: 100%;
}

.form__group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 1);
}

.contacto__form input, 
.contacto__form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: #ffffff;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.contacto__form input:focus, 
.contacto__form textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.contacto__form textarea {
    height: 100px;
    resize: none;
}

.btn__submit {
    width: auto; 
    min-width: 280px; 
    margin: 2rem auto 0; 
    padding: 1rem 2.5rem; 
    background-color: #ffffff;
    color: #000;
    border: 1px solid #ffffff;
    font-size: 0.85rem;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: .8rem;
    transition: var(--transition-smooth);
    display: block; 
}

.btn__submit:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1300px) {
    .contacto__wrapper {
        gap: 3rem; 
    }
    
    .contacto__info h2 {
        font-size: 3.5rem; 
    }
}

@media (max-width: 1024px) {
    .contacto__wrapper {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 4rem;
    }

    .contacto__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contacto__info h2 {
        font-size: 4rem;
        line-height: 1.1;
    }

    .contacto__info p {
        letter-spacing: 8px;
    }

    .contacto__extra-info {
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
    }

    .form__row {
        gap: 1.5rem; 
    }
}

@media (max-width: 767px) {
    .contacto {
        padding: 4rem 0;
    }

    .contacto__info h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .contacto__info p {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .form__row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form__group {
        width: 100%;
    }

    .form__group label {
        font-size: 0.7rem;
        text-align: left;
    }

    .contacto__form input, 
    .contacto__form textarea {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .btn__submit {
        width: 100%; 
        margin-top: 2rem;
        padding: 1.2rem;
    }
}

/* FOOTER */
.containerFooter__fluid {
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 1.25rem;
}

.footer {
    background-color: var(--color-fondo);
    padding: 5rem 0 2rem 0;
    width: 100%;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__logo img {
    width: clamp(250px, 20vw, 350px);
    height: auto;
}

.footer__logo p {
    font-size: 1.1rem;
    margin-top: -1.5rem; 
    color: #666;
}

/* --- REDES SOCIALES --- */
.footer__social {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.social__link {
    font-size: 0.9rem;
    padding: 0.8rem 0;
    width: clamp(150px, 15vw, 220px);
    text-align: center;
    border: 1px solid var(--color-primario);
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-primario);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social__link:hover {
    background-color: var(--color-primario);
    color: white;
    transform: translateY(-3px);
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 10rem);
    margin-bottom: 4rem;
    width: 100%;
}

.footer__links-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer__links a {
    text-decoration: none;
    color: #444;
    font-size: 0.8rem;
    margin: 0.5rem 0;
    transition: 0.3s;
}

.footer__links a:hover {
    color: #000;
}

.footer__info {
    font-size: 0.85rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: #888;
}

@media (max-width: 1024px) {
    .footer__links {
        gap: 3rem;
    }
    
    .footer__links-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 4rem;
    }

    .footer__logo p {
        margin-top: 0.5rem; 
        font-size: 1rem;
    }

    .footer__social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social__link {
        width: 100%;
        max-width: 300px;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer__info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 25px; 
    right: 25px; 
    z-index: 2000; 
    width: 65px;
    height: 65px;
    background-color: var(--color-primario); 
    border-radius: 20%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.15); 
    background-color: var(--color-hoverWhatsapp);
}
.whatsapp-float i {
    font-size:30px;
    color: var(--color-texto2); 
}


.notification {
    position: fixed;
    top: 30px;
    right: -450px;
    width: 350px;
    background-color: #000;
    color: #fff;
    z-index: 10001;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.notification.show {
    right: 30px;
}

.notification__body {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
}

.notification__icon {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.notification__content span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.notification__content p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.notification__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.notification.show .notification__progress::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    animation: progress 4s linear forwards;
}

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

.modal {
    display: none; 
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modal__card p {
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .notification {
        width: calc(100% - 40px);
        top: auto;
        bottom: 20px;
        right: -110%;
    }

    .notification.show {
        right: 20px;
    }

    .modal__overlay {
        backdrop-filter: blur(8px); 
    }
}


.EdgecuttingLiteMedium {
    font-family:'EdgecuttingLiteMedium', sans-serif;
}
.EdgecuttingLiteSharp {
    font-family:'EdgecuttingLiteSharp', sans-serif;
}

.EdgecuttingLiteTight {
    font-family:'EdgecuttingLiteTight', sans-serif;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000; 
    z-index: 1;
}

