@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --color--blue: #105798;
    --color--white: #ffffff;
    --color--black: #404040;
    --color--black-dark: #0c3155;
    --bg-color: #ffffff;
    --bg--coloWhite: #ffffff9d;
    --bg-coloWhite-secundary: #f9fafd;
    --bg--degradado-primary: #3a3a3a98;
    --border--color: #b1b1b14f;
    --secundary--color-dark: #105798;
    --hover--btn-color-blue: #196cbb;
    --color-red: #ff3434;
    --color-verde: #29db0a;
}


* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.menu-open {
    overflow: hidden;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a,
ul,
input {
    list-style: none;
    text-decoration: none;
    border: none;
}

section {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 7%;
}

[id] {
    scroll-margin-top: 100px;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 50px;
}

.cookieOverlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1000px;
    height: 1000px;
    background-color: red;
    z-index: 2000;
    position: fixed;
}

.spaceTitle {
    margin-top: 8%;
}

.containerAllchat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    pointer-events: none;
}


.chat-container,
.chat-container2,
.chat-container3 {
    position: fixed;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.chat-container {
    position: absolute;
    right: 0px;
    top: 195px;
}

.chat-container2 {
    position: absolute;
    left: 20px;
    top: 310px;
}

.chat-container3 {
    position: absolute;
    left: 355px;
    top: 310px;
}


.hiddenChat {
    opacity: 1;
    visibility: visible;
    animation: popUp 0.6s ease-out forwards;
}

.left__chat,
.right__chat,
.center__chat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 25px;
    padding: 10px;
    border-radius: 1rem;
    font-size: 12px;
    font-weight: 500;
    background-color: #e0e0e074;
    border: 1px solid #e6f6fc37;
    color: rgb(46, 46, 46);
}

.left__chat {
    border-bottom-left-radius: 0;
}

.right__chat {
    border-bottom-right-radius: 0;
}

.center__chat {
    border-bottom-right-radius: 0;
}

@keyframes popUp {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    80% {
        transform: scale(0.95);
    }

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


.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 50px;
}

.contenToast {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: 0;
}

.toastChange {
    position: absolute;
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    border-radius: 3px;
    gap: 15px;
    padding: 15px;
    width: 100%;
    height: 70px;
    background-color: var(--bg-coloWhite-secundary);
    border: 1px solid #f5f5f5;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.succes i {
    color: #29db0a;
    font-size: 30px;
}

.error i {
    color: var(--color-red);
    font-size: 30px;
}

.toast h4 {
    color: var(--color--black);

}

.toast p {
    color: var(--bg--degradado-primary);
}

.error,
.succes {
    display: none;
}


.ativeToast {
    display: flex;
    animation: slideIn 900ms ease-in forwards;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0%);
        scale: 1.03;
        opacity: 1;
    }

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

@keyframes slideOut {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

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

.body-no-scroll {
    overflow: hidden;
    height: 100vh;
}

.contenAgenda {
    display: flex;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 100ms ease-out;
}

.overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 22, 22, 0.775);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 100ms ease-out;
}

.mostrar {
    opacity: 1;
    pointer-events: all;
}

.overlay.active,
.contenAgenda.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contenBtn__agenda {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.size__btnDate {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border--color);
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    transition: 300ms ease;
    box-shadow: rgba(98, 98, 98, 0.231) 0px 5px 15px;
}

.size__btnDate i {
    font-size: 20px;
}

.btn-sendAgenda {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secundary--color-dark);
    color: var(--color--white);
}


.btn-sendAgenda:hover {
    background-color: var(--hover--btn-color-blue);
    transform: scale(1.02);
}

.btn_cancelar {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--bg--degradado-primary);
}

.btn_cancelar:hover {
    color: var(--color--white);
    background-color: var(--color-red);
    transform: scale(1.02);
}

.conten_titulo_agenda {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.conten_titulo_agenda h1 {
    font-size: 18px;
    font-weight: 600;
}

.agenda {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: auto;
    top: 3%;
    right: 25px;
    z-index: 3000;
    border-radius: 8px;
    position: fixed;
    background-color: var(--bg-coloWhite-secundary);
    border: 1px solid var(--border--color);
    padding: 12px;
    gap: 20px;
    overflow-y: auto;
    bottom: 3%;
    padding: 15px;
}

.agenda {
    scrollbar-width: none;
    -ms-overflow-style: none;
}



body.modal-abierto {
    overflow: hidden;
}

.titleInf {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color--black);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
}

.titleInf i {
    font-size: 10px;
    color: var(--color-red);
}

.contenInformacion_personal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    border-radius: 5px;
    padding: 10px;
}

.contentDate {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    border-radius: 5px;
    padding: 10px;
}

.contenInfo_personal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.contenInfo_personal input {
    height: 43px;
    background-color: transparent;
    border: 1px solid var(--border--color);
    border-radius: 5px;
    outline: none;
    color: var(--color--black);
    padding: 10px;
    box-shadow: 0 4px 20px rgba(146, 142, 142, 0.084);
}

.contenInfo_personal label {
    display: flex;
    gap: 3px;
    align-items: center;
    font-size: 14px;
    color: var(--color--black);
    font-weight: 400;
}

.contenInfo_personal i {
    color: var(--color-red);
    font-size: 10px;
}

.contentHour {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contentCard_hour {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.card_hour {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border: 1px solid var(--border--color);
    background-color: var(--bg--coloWhite);
    border-radius: 5px;
    color: var(--color--black);
    font-size: 13px;
    cursor: pointer;
    transition: 300ms ease;
}

.card_hour:hover {
    border: 2px solid var(--color--blue);
    color: var(--secundary--color-dark);
    transform: scale(1.1);
}

.active {
    border: 2px solid var(--color--blue);
    color: var(--secundary--color-dark);
}


.flatpickr-calendar.inline {
    width: 100% !important;
    max-width: 100% !important;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #e6f6fc25;
    box-shadow: 0 4px 20px rgba(146, 142, 142, 0.084);
}

.flatpickr-innerContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.flatpickr-months {
    display: flex;
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    color: var(--color--black) !important;
    height: 45px;
}

.flatpickr-current-month {
    color: var(--color--black) !important;
}

.flatpickr-weekday {
    color: var(--color--black) !important;
}

.flatpickr-day {
    color: var(--color--black);
}

.flatpickr-day.selected {
    background-color: var(--secundary--color-dark);
    font-size: 18px;
    font-weight: 700;
    align-items: center;
    display: flex;
    justify-content: center;
    color: var(--color--white);
}

.flatpickr-day:hover {
    background-color: var(--secundary--color-dark);
    border: transparent;
    color: var(--color--white);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}


.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: var(--color--black);
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background-color: transparent !important;
    color: var(--secundary--color-dark) !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    fill: var(--color--black) !important;
    cursor: pointer;
}

.flatpickr-day.flatpickr-disabled {
    color: var(--bg--degradado-primary);
    cursor: not-allowed;
}


.contenTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenTitle p {
    font-size: 1.2rem;
    color: var(--color--black);
}

.contenHeader {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 10%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logoNav {
    width: clamp(160px, 30vw, 150px);
}

.logo {
    display: flex;
    width: clamp(160px, 30vw, 140px);
    height: auto;
    display: block;
    object-fit: contain;
}

.iconFloting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    right: 0;
    padding: 35px 70px;
    position: fixed;
    transition: transform 0.3s ease;
    z-index: 1;
    opacity: 0;
}

.iconFloting i {
    display: flex;
    color: rgb(255, 255, 255);
    font-size: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #d3e4f41f;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.iconFloting span {
    display: flex;
    color: rgb(255, 255, 255);
    opacity: 0.7;
    font-size: 0.8rem;
}

.iconFloting i:hover {
    transform: scale(1.2);
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.header {
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: auto;
    justify-content: center;
    align-items: center;
    height: auto;
    position: fixed;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    padding: 0 40px;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(22px) saturate(136%);
    -webkit-backdrop-filter: blur(22px) saturate(136%);
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
}

.btn-conten__inf {
    opacity: 0;
}

.hidden {
    opacity: 1;
    visibility: visible;
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 100px;
}

.close_nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    display: inline-block;
    cursor: pointer;
    color: var(--color--black);
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 550;
    list-style: none;
    transition: 300ms ease;
}

.nav ul li a:hover {
    color: var(--secundary--color-dark);
    transform: translateY(-5px);
}


.contentInformation {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

.btn_agenda {
    border: 1px solid #62626256;
    outline: none;
    background-color: var(--secundary--color-dark);
    padding: 8px 30px;
    border-radius: 5px;
    color: #ffff;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 300ms ease-out;
}


.btn_agenda:hover {
    background-color: var(--hover--btn-color-blue);
    transform: scale(1.1);
    cursor: pointer;
}

.contenTitle__nav {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    width: 100%;
}

.empresa {
    display: flex;
    width: clamp(150px, 30vw, 300px);
    height: auto;
    object-fit: contain;
    margin-bottom: -10%;
}


.btn-content02 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.conteInfoAbout p {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.fondoImg {
    width: clamp(150px, 90vw, 800px);
    height: auto;
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 50%, transparent 90%);
}

.contentServi_icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.serviIcon {
    display: flex;
    gap: 10px;
}

.dondoIcon {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    height: 100px;
    border-radius: 5px;
    gap: 5px;
    background-color: #d3e4f42c;
    border: 1px solid #ffffff25;
}

.dondoIcon i {
    font-size: 50px;
}

.dondoIcon p {
    font-size: 10px;
}

.contenIdentity {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    height: auto;
    flex-direction: column;
    gap: 30px;
}

.titleNormal {
    display: flex;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
}

.contenOferta {
    display: flex;
    width: 88%;
    flex-direction: column;
    gap: 8px;
}

.contenOferta p {
    font-size: 14px;
}

.contentInput_email {
    display: flex;
    width: 100%;
    align-items: center;
}

.contentInput_email input {
    width: 100%;
    height: 40px;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #d3e4f42c;
    padding: 10px;
    border: 1px solid #ffffff25;
    color: var(--color--white);
}

.contentInput_email input:focus {
    outline: none;
    box-shadow: none;
}

.companySection {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.subtitle {
    color: var(--color--black);
    font-size: clamp(16px, 2vw, 25px);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 50px;
    max-width: 600px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    /* background-color: red; */
    margin-bottom: 100px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    user-select: none;
    color: white;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.logo-item img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.4);
}

.opacity-40 {
    opacity: 0.6;
    color: #4b5563;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

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


/* SECCION SERVICIO */
.contenTitleService {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.contenTitleService i {
    font-size: 15px;
}

.titleDefinition {
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    max-width: 600px;
    font-size: clamp(20px, 3vw, 35px) !important;
    margin-top: 30px;
    margin-bottom: -5px;
    color: var(--color--black);
}

.contenTitleService p {
    margin-top: 16px;
    color: var(--bg--degradado-primary);
    font-size: clamp(16px, 3vw, 18px);
    max-width: 500px;
    text-align: center;
}


.service {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    color: var(--color--white);
    align-items: center;
    /* background-color: red; */
}

.serviceTitle {
    color: var(--color--white);
    font-size: 2rem;
    font-weight: 500;
}

/* /////// SERVICE 01 */

.firstService {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.recuadro {
    background-color: var(--bg--coloWhite);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
}

.panel-left {
    display: flex;
    align-items: center;
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.984) 40%, transparent 100%);
    backdrop-filter: blur(16px) saturate(180%);
}

.tabs {
    display: flex;
    padding: 5px;
    border-radius: 3px;
    gap: 8px;
    margin-bottom: 24px;
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    backdrop-filter: blur(16px) saturate(180%);
    font-size: 12px;
    font-weight: 600;
}

.tab-button {
    background-color: var(--bg-color);
    border-radius: 3px;
    font-weight: 600;
    padding: 5px 10px;
    color: var(--color--black);
    border: none;
    cursor: pointer;
    user-select: none;
}

.tab-label {
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: var(--color--black);
}

ul.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color--black);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

ul.task-list li {
    border: 1px solid var(--border--color);
    border-radius: 5px;
    padding: 3px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color--black);
}

ul.task-list * {
    color: var(--color--black);
}

.task-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.task-info i {
    color: var(--color--black);
}

.task-list li span i {
    color: var(--secundary--color-dark);
    width: 18px;
    height: 18px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.task-title {
    font-weight: 600;
    font-size: 13px;
}

.task-subtitle {
    font-size: 10px;
    color: var(--color--black);
}

.task-carousel {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scroll-loop 8s linear infinite;
    will-change: transform;
}

@keyframes scroll-loop {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Panel derecho */
.panel-right {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--color--black);
    background-color: #e9e9e98e;
    border: 1px solid #b1b1b14f;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    width: max-content;
}

.panel-right h1 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    max-width: auto;
    color: var(--color--black);
}

.panel-right p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color--black);
    max-width: 300;
    margin: 0;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amenidades {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color--black);
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.amenidades i {
    color: var(--color--blue);
}


/* SECCION 2 DE SERVICO */

/* Left side */

.secondService {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.left {
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
    color: var(--color--black);
}

.left h1 {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.2;
    margin: 0;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color--black);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
}

.tag i {
    color: var(--color--blue);
}

.recuadro2 {
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    margin-top: 30px;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.984) 20%, transparent 100%);
}

/* Right side */
.right {
    display: flex;
    background-color: var(--bg--coloWhite);
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    padding: 24px;
    max-width: 450px;
    width: 100%;
}


.title {
    color: var(--color--black);
    font-size: 18px;
    font-weight: 400;
    margin: 5px 0 20px 0;
    text-align: center;
}


/* Textarea container */
.textarea-container {
    position: relative;
    width: 100%;
}

textarea {
    width: 100%;
    background-color: #0000001a;
    border: 1px solid var(--border--color);
    border-radius: 8px;
    padding: 8px 12px;
    color: #9ca3af;
    font-size: 14px;
    resize: none;
    outline: none;
    min-height: 72px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    animation: typing 1.5s ease-in-out infinite;
}


.add-document {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--bg--coloWhite);
    color: var(--color--black);
    font-size: 12px;
    border-radius: 3px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-document i {
    font-size: 10px;
    color: var(--secundary--color-dark);
}

/* Bottom buttons container */
.bottom-buttons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--color--black);
    font-size: 10px;
    user-select: none;
}

.bottom-button {
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    padding: 4px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: background-color 1s ease;
}

.bottom-button i {
    font-size: 12px;
    color: var(--color--blue);
}

.contenedoCode {
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    border-radius: 12px;
}

.code-container {
    position: relative;
    border-radius: 12px;
    margin: auto;
    height: 180px;
    overflow: hidden;
}

.cabezera {
    top: 0;
    z-index: 100;
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.circles {
    display: flex;
    gap: 0.5rem;
}

.colorRed {
    background-color: rgba(255, 73, 28, 0.972);
}

.colorYeelow {
    background-color: rgb(235, 224, 8);
}

.colorGreen {
    background-color: rgb(60, 190, 0);
}


.circle {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.code-button {
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    color: var(--color--black);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.code-content {
    position: relative;
    z-index: 1000;
    padding: 1rem 1.5rem;
    color: var(--color--black);
    font-size: 0.875rem;
    line-height: 1.5rem;
    user-select: none;
    animation: verticalSlide 6s ease-in-out infinite alternate;
}

@keyframes verticalSlide {
    0% {
        top: 0;
    }

    100% {
        top: -120px;
    }
}

.line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.line-number {
    color: var(--color--black);
    font-weight: 600;
    min-width: 1.25rem;
    text-align: right;
    user-select: text;
}

.line-text {
    color: var(--color--black);
}

.line-text-muted {
    color: var(--color--black);
    padding-left: 0.5rem;
}

.indent-1 {
    padding-left: 2rem;
}

/* SECCION NOSOTROS */

.aboutSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;/
}

.colorChange_black {
    color: var(--color--black);
}

.contenInfo__about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 20px;
}

.contenCards {
    display: flex;
    max-width: 1000px;
    width: 100%;
    width: auto;
    gap: 20px;
}

.card {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 350px;
    height: auto;
    gap: 15px;
    border-radius: 6px;
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    backdrop-filter: blur(16px) saturate(180%);
    align-items: center;
    padding: 15px;
}

.contenCabecera {
    display: flex;
    width: 100%;
    height: auto;
}

.contenCabecera i {
    display: flex;
    font-size: 25px;
    color: var(--secundary--color-dark);
}

.contenTitle__about {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
}

.contenTitle__about h1 {
    font-size: 18px;
    font-weight: 600;
}

.contenTitle__about p {
    font-size: 14px;
    font-weight: 300;
}

.btn-content__card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.btn_card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90% !important;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    border: 0;
    color: var(--color--white);
    background-color: var(--secundary--color-dark);
    box-shadow: rgba(127, 127, 149, 0.213) 0px 7px 29px 0px;
    margin-top: 15px;
}

/* CLIENTE SECCION */

.seccionClientes {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rebeccapurple; */
}

.contenHappyCliinete {
    display: flex;
    width: 100%;
    max-width: 100vw;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cardHappy {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100px;
    width: 200px;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid var(--border--color);
}

.cardHappy p {
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    color: var(--secundary--color-dark);
}

.cardHappy span {
    color: var(--color--black);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}



/* //////////////////////////////// */

.seccionAction {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    height: auto;
}


.seccionAction img {
    width: 900px;
    height: auto;
}

.groupVideo {
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.984) 70%, transparent 85%);
}

.videoPC {
    position: absolute;
    display: flex;
    width: 520px;
    height: 600px;
    top: 0px;
}

.titleWeb {
    font-size: 40px;
    font-weight: 600;
    color: var(--color--black);
}

.contenComparation {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.comparation {
    display: flex;
    width: clamp(350px, 50vw, 400px);
    flex-direction: column;
    border: solid 1px var(--border--color);
    backdrop-filter: blur(16px) saturate(180%);
    padding: 15px;
    border-radius: 5px;
    gap: 15px;
    animation: fadeOut 2s ease-in infinite;
}

@keyframes fadeOut {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0px);
    }

}

.comparation h1 {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 500;
    color: var(--color--black);
}

.comparation ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparation ul li {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.comparation ul li i {
    color: var(--secundary--color-dark);
    font-weight: 700;
}

.callAction {
    display: flex;
    width: 100%;
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-top: -90px;
}

.btn_action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    background-color: var(--secundary--color-dark);
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--color--white);
    border-radius: 5px;
    padding: 0px 20px;
    margin-top: 30px;
    transition: 300ms ease;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn_action:hover {
    background-color: var(--hover--btn-color-blue);
    transform: scale(1.03);
}

.callAction h1 {
    font-size: 18px;
    font-weight: 800;
}

.callAction p {
    font-size: 14px;
    font-weight: 400;
}

.sectionPlants {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contenMontly {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.cardMonth {
    display: flex;
    width: 100%;
    max-width: 200px;
    height: 40px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
}

.contenPLants {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
}

.cardPlant {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    max-width: 310px;
    height: auto;
    border-radius: 8px;
    gap: 10px;
    background-color: var(--bg--coloWhite);
    border: solid 1px var(--border--color);
    color: var(--color--black);
    backdrop-filter: blur(16px) saturate(180%);
    z-index: 1;
}

.cardPlant h1 {
    font-size: 20px;
    font-weight: 700;
}

.cardPlant p {
    font-size: 15px;
    font-weight: 400;
}

.contenPrecio {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.contenPrecio h1 {
    font-size: clamp(45px, 3vw, 20px);
    font-weight: 750;
    color: var(--secundary--color-dark);
}

.contenPrecio p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}

.btn__plant {
    display: flex;
    width: 100%;
    border-radius: 5px;
    border: none;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--secundary--color-dark);
    color: var(--color--white);
    font-size: 15px;
}

.cardPlant ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.cardPlant li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.cardPlant i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secundary--color-dark);
    font-size: 14px;
    font-weight: 700;
}

.contenIconoPlan i {
    font-size: 30px;
    margin-bottom: 15px;
}

.contenTitle_plant {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.noSelect {
    text-decoration: line-through;
    color: var(--bg--degradado-primary);
    font-weight: 400 !important;
}

.colorPplan {
    position: relative;
    border: 2px solid var(--secundary--color-dark);
    box-shadow: rgba(50, 50, 93, 0.174) 0px 13px 27px -5px, rgba(0, 0, 0, 0.181) 0px 8px 16px -8px;
}

.animatePlan {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 10px;
    gap: 2PX;
    right: 10px;
    animation: flicker 1s infinite ease-in-out;
    color: #f3b90b !important;
    font-size: 20px !important;
}

.animatePlan::after {
    content: "POPULAR";
    font-size: 8px;
    font-family: "Figtree", sans-serif;
}

@keyframes flicker {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 35%;
}

.sectionFaq {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    background: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    color: var(--color--black);
}


.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #fafafa;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.activeAsk .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 25px;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--secundary--color-dark);
}

.faq-item.activeAsk .faq-icon {
    transform: rotate(45deg);
}

.contenFaq {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.contenTeamQuestions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    gap: 60px;
    border-radius: 8px;
    background-color: var(--bg-coloWhite-secundary);
}

.contenFoto__team {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
}

.contenFoto__team img {
    display: flex;
    width: 230px;
    height: auto;
}

.contenTeamQuestions h1 {
    font-size: 21px;
    font-weight: 700;
}

.contenTeamQuestions p {
    font-size: 15px;
    text-align: center;
}

.btn_FAQ {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color--blue);
    border: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    color: var(--color--white);
    width: auto;
    padding: 0px 20px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    transition: 300ms ease;
}

.btn_FAQ:hover {
    background-color: var(--hover--btn-color-blue);
    transform: scale(1.02);
}

.title__faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app__section {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    margin-bottom: 100px;
    perspective: 1000px;
    margin: 20px;
}

.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    transform-origin: bottom;
    will-change: transform, width;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.984) 50%, transparent 100%);
}

.phone.visible {
    transform: rotateX(0deg) translateX(-100px);
    width: 200px;
    opacity: 0;
}

.contenInfo__phone.visible {
    transform: rotateX(0deg) translateX(-100px);
    width: 200px;
    opacity: 0.7;
}


.laptop.visible {
    transform: rotateX(0deg) translateX(-100px);
    width: 200px;
    opacity: 0.7;
}


.containerPhone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 150px;
}

.contenInfo__phone {
    display: flex;
    flex: 1;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contenInfo__phone.visible {
    opacity: 1;
    transform: translateY(0);
}

.prueva {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contenInfo__phone h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color--black);
}

.contenInfo__phone p {
    font-size: 15px;
    color: var(--color--black);
}

.contenInfo__phone ul {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: var(--color--black);
    gap: 15px;
    list-style-type: disc;
    padding-left: 30px;
}

.btn__app {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: var(--secundary--color-dark);
    color: var(--color--white);
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    margin-top: 25px;
}

.sectionNosotros {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
}

.contenCard__equipo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    gap: 30px;
}

.cardEquipo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 230px;
    height: auto;
    padding: 40px;
    background-color: var(--bg--coloWhite);
    border-radius: 8px;
    border: 1px solid var(--border--color);
    box-shadow: rgba(202, 202, 202, 0.2) 0px 7px 29px 0px;
    gap: 20px;
    transition: 500ms ease-out
}

.cardEquipo img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secundary--color-dark);
}

.cardEquipo h2 {
    font-size: 14px;
    color: var(--color--black);
}

.cardEquipo p {
    font-size: 14px;
    color: var(--bg--degradado-primary);
}

.contenTitulo__nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenIcon__nosotros {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contenIcon__nosotros i {
    color: var(--color--black);
    font-size: 20px;
}

.cardEquipo:hover {
    background-color: var(--secundary--color-dark);
    color: var(--color--white);
    transform: translateY(-20px);
}

.cardEquipo:hover img {
    border: 3px solid var(--color--white);
}


.cardEquipo:hover .contenTitulo__nosotros h2,
.cardEquipo:hover .contenTitulo__nosotros p,
.cardEquipo:hover .contenIcon__nosotros i {
    color: var(--color--white);
}

.contenTeam__work {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 3PX;
    margin-bottom: 30px;
}

.contenTeam__work h1 {
    font-size: 140px;
    font-weight: 900;
    color: var(--border--color);
    list-style: 0.5;
}

.contenLineas {
    display: flex;
    width: 100%;
    max-width: 560px;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.infoLIne {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.infoLIne h4 {
    font-size: 12px;
    color: var(--bg--degradado-primary);
}

.infoLIne i {
    color: var(--bg--degradado-primary);
    font-size: 20px;
}

.infoLIne hr {
    width: 20px;
    height: 2px;
    background-color: var(--color--black);
    transform: rotate(90deg);
    margin-bottom: 15px;
    opacity: 0.5;
}

.contenTeam__work img {
    margin-top: -100px;
}

/* CONTANTO FORM */

.section__contant {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    gap: 50px;
}

.organizador {
    display: flex;
    width: 100%;
    max-width: 900px;
    flex-direction: column;
    gap: 50px;
}

.form__contact {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form__contact h1 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.1;
}

.form__contact p {
    color: var(--color--black);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.flex-row {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.flex-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}

label {
    color: var(--color--black);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    border: 1px solid var(--border--color);
    border-radius: 5px;
    padding: 10px;
    font-size: 0.875rem;
    color: var(--color--black);
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    background-color: transparent;
}

input:focus {
    border-color: var(--secundary--color-dark);
    box-shadow: 0 0 0 1 var(--secundary--color-dark);
}

textarea {
    resize: none;
    min-height: 96px;
}

.formContat {
    width: 100%;
    background-color: var(--secundary--color-dark);
    color: var(--color--white);
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 300ms ease;
}

.formContat:hover,
.formContat:focus {
    background-color: var(--hover--btn-color-blue);
}




.contenCard__option {
    display: flex;
    width: 100%;
    gap: 15px;
    margin-bottom: 30px;
}

.cardContact {
    border-radius: 5px;
    padding: 5px;
    width: 100%;
    background-color: white;
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.cardContact.selected {
    border: 2px solid #2563eb;
}

.icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: white;
    border-radius: 0.375rem;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.icon-wrapper i {
    font-size: 20px;
    color: var(--color--black);
}

.cardContact h3 {
    font-weight: 600;
    color: var(--color--black);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.cardContact p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--bg--degradado-primary);
}

.checkmark {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background-color: #2563eb;
    color: white;
    font-size: 0.75rem;
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    align-items: center;
}

.circleContact {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid #d1d5db;
    display: block;
}

.contentMap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contenCard__infoContact {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.card_infoCntact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    width: 100%;
    height: 100px;
    border-radius: 5px;
    gap: 3px;
    background-color: var(--bg-coloWhite-secundary);
    border: 1px solid var(--border--color);
}

.card_infoCntact i {
    font-size: 20px;
    color: var(--color--black);
}

.card_infoCntact h1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color--black);
}

.card_infoCntact p {
    font-size: 12px;
    color: var(--color--black);
}


@media (max-width: 640px) {
    .contenCard__option {
        flex-direction: column;
        align-items: center;
    }

    .cardContact {
        width: 100%;
    }
}

/* //////////// FOOTER/////////// */

footer {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 40px;
    width: 100%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: space-evenly;
}

.footer-col {
    max-width: 250px;
    /* background-color: red; */
}

.footer-logo img {
    max-width: 150px;
}

.footer-description {
    color: #555;
    font-size: 14px;
    margin: 15px 0;
    max-width: 250px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 30px;
    color: black;
    text-decoration: none;
}

.social-icons a i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg--degradado-primary);
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--border--color);
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: black;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.social-icons a i:hover,
.footer-col a:hover {
    color: var(--secundary--color-dark);
}

.subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe :nth-child(4) {
    border-bottom: 1px solid transparent;
}


.contenPost {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border--color);
    padding-bottom: 10px;
}

.subscribe img {
    width: 70px;
    height: auto;
    border-radius: 5px;
    filter: grayscale(100%);
    image-rendering: pixelated;
}

.contenPost__title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contenPost__title h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--color--black);
}

.contenPost__title article {
    font-size: 12px;
    color: var(--color--black);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--bg--degradado-primary);
}

.footer-bottom a {
    color: var(--bg--degradado-primary);
    text-decoration: none;
    margin-left: 10px;
}

.footer-bottom a:hover {
    color: var(--secundary--color-dark);
}

/* //////////////// NAV RESPOSIVE//////////// */

.contenNave_resposive {
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    justify-content: end;
    position: absolute;
    top: -100%;
    position: fixed;
    z-index: 1000;
}

.conten__toggle {
    display: flex;
    width: 100%;
    justify-content: end;
}

.conten__toggle i {
    font-size: 1.3rem;
    cursor: pointer;
}

.navReposive {
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: auto;
    flex-direction: column;
    align-items: start;
    padding: 20px 20px;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(22px) saturate(136%);
    -webkit-backdrop-filter: blur(22px) saturate(136%);
    background-color: var(--bg--coloWhite);
    border: 1px solid var(--border--color);
    gap: 20px;
}

.conten__links {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: auto;
    border-bottom: 1px var(--border--color) solid;
    padding-bottom: 10px;
    gap: 15px;
}

.conten_ayuda {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-bottom: 1px var(--border--color) solid;
    padding-bottom: 10px;
    gap: 20px;
}

.conten_ayuda h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secundary--color-dark);
    margin-bottom: 5px;
}

.conten_icon-ayuda {
    display: flex;
    align-items: center;
    gap: 10px;
}

.conten_icon-ayuda i {
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    background-color: var(--border--color);
    border-radius: 50%;
    font-size: 1rem;
}

.conten_icon-ayuda h1 {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: var(--color--black);
    gap: 5px;
}

.conten_icon-ayuda h1 span {
    font-size: 12px;
}

.conten_redes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.conten_redes h1 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secundary--color-dark);
}

.conten_redes span {
    font-size: 1rem;
    color: var(--color--black);
}

.conten_icon_rede {
    display: flex;
    gap: 10px;
    color: var(--color--black);
    cursor: pointer;
}

.conten_redes i {
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    background-color: var(--border--color);
    border-radius: 50%;
    font-size: 1rem;
}


.navReposive ul li a {
    display: inline-block;
    cursor: pointer;
    color: var(--color--black);
    font-style: normal;
    font-size: 1rem;
    font-weight: 550;
    list-style: none;
    transition: 300ms ease;
}

.navReposive ul li a:hover {
    color: var(--secundary--color-dark);
    transform: translateY(-5px);
}

.toggle_conten_menu {
    display: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.toggle_conten_menu i {
    cursor: pointer;
    font-size: 18px;
}

.toggle_conten_menu img {
    width: 100px;
    height: auto;
}

.visible2 {
    display: none;
}

.textError {
    display: none;
    font-size: 12px;
    color: var(--color-red);
}

.borderInput {
    border: 1px solid var(--color-red) !important;
}


/* /////////////////// DESDE Aqui/////////// */

.sectionCliente {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}


.carousel-container {
    width: 50%;
    max-width: 100vw;
    overflow: hidden;
    border-radius: 5px;
}

.carousel {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 20px;
}

.content_perfil {
    display: flex;
    width: auto;
    width: auto;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--secundary--color-dark);
    height: 100%;
    padding: 10px;

}

.content_perfil img {
    filter: brightness(0) invert(1);
}

.testimonial {
    max-width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: row;
    min-width: 50%;
    padding: 10px;
    gap: 10px;
    transition: transform 3s ease;
    border: 1px solid var(--border--color);
}

.contenCard_testimonial {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contenCard_testimonial i {
    color: var(--secundary--color-dark);
    font-size: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--color--black);
    opacity: 0.8;
}

.testimonial-author {
    font-size: 17px;
    color: #5151d5;
    opacity: 0.8;
    font-weight: bold;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

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

/* //////////////// RESPOSIVE//////////// */

@media (max-width: 1124px) {

    .containerAllchat {
        display: none;
    }
}

@media (max-width: 724px) {

    .footer-col {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .carousel-container {
        width: 70%;
    }

    .footer-container {
        justify-content: space-between;
    }

    .nav {
        width: 100%;
        border-radius: 0px;
    }

    .header {
        height: 70px;
        margin-top: 0px;
    }

    .close_nav {
        display: none;
    }

    .toggle_conten_menu {
        display: flex;
    }

    .logo-item img {
        width: 120px;
    }

    .firstService {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 15px;
    }

    .panel-left {
        width: 100%;
    }

    .secondService {
        flex-direction: column-reverse;
        align-items: center;
        padding: 15px;
        gap: 16px;
    }

    .contenComparation {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .callAction {
        display: flex;
        width: 100%;
        margin-top: -70px;
    }

    .prueva {
        justify-content: center;
        flex-direction: column-reverse;
        padding: 15px;
        gap: 40px;
    }


    .contenInfo__phone {
        display: flex;
        width: 100% !important;
    }

    .contenInfo__about {
        flex-direction: column;
    }

    .contenCards {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    .contenCard__equipo {
        flex-direction: column;
        padding: 15px;
    }

    .cardEquipo {
        max-width: 100%;
    }

    .card {
        width: 100%;
    }

    .contenPLants {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .cardPlant {
        max-width: 100%;
        align-items: center;
    }

    .contenHappyCliinete {
        flex-wrap: wrap;
        padding: 15px;
        gap: 30px;
    }

    .imgCliente {
        justify-content: center;
        align-items: center;
    }

    .cardCliente {
        flex-direction: column;
    }

    .contenTeamQuestions {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-icon {
        font-size: 18px;
    }

    .agenda {
        width: 90%;
        height: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 520px) {
    .contenCard__infoContact {
        flex-direction: column;
    }

    .contenTitleService {
        padding: 7px;
    }


    .carousel-container {
        width: 100%;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .contenHeader {
        margin-top: 2%;
    }

    .btn__app {
        max-width: 100%;
        margin-left: 0px;
    }

    .formContat {
        padding: 11px;
    }

    .btn_FAQ {
        height: 35px;
    }

    .conten_titulo_agenda h1 {
        font-size: 14px;
        font-weight: 500;
    }

    .contenInfo_personal input {
        height: 35px;
    }

    .contenInfo_personal label {
        font-size: 12px;
    }

    .contenInfo_personal {
        gap: 5px;
    }

    .titleInf {
        font-size: 16px;
    }

    .flatpickr-current-month .flatpickr-monthDropdown-months {
        font-size: 16px;
    }

    .flatpickr-current-month input.cur-year {
        font-size: 16px;
    }

    .size__btnDate {
        height: 40px;
    }

    .subscribe button {
        background-color: var(--secundary--color-dark);
        color: white;
        border: none;
        padding: 10px 20px;
        width: 100%;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
    }

    .toast {
        height: 55px;
    }

    .toastChange {
        right: auto;
    }

    .error i,
    .succes i {
        font-size: 20px;
    }

    .toast h4 {
        font-size: 14px;
    }

    .toast p {
        font-size: 13px;
    }

    .cardHappy {
        width: 100%;
        gap: 0;
    }

    .testimonial {
        flex-direction: column;
        max-width: 100vw;
    }

}

/* ////////// COOKIES/////// */

.cookieOverlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 2000;
    position: fixed;
}


.cardCookie {
    width: auto;
    height: 250px;
    background-color: var(--color--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    margin: 15px;
    gap: 13px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
}

.cookieHeading {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color--black);
}

.cookieDescription {
    text-align: center;
    font-size: 0.8em;
    font-weight: 400;
    color: rgb(99, 99, 99);
}

.cookieDescription a {
    display: flex;
    align-items: center;
    justify-content: center;
    --tw-text-opacity: 1;
    margin-top: 10px;
    color: var(--secundary--color-dark);
}

.cookieDescription a:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.buttonContainer {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.acceptButton {
    width: 80px;
    height: 30px;
    background-color: var(--secundary--color-dark);
    transition-duration: .2s;
    border: none;
    color: rgb(241, 241, 241);
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    transition: all .6s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.declineButton {
    width: 80px;
    height: 30px;
    background-color: var(--bg-coloWhite-secundary);
    transition-duration: .2s;
    color: rgb(46, 46, 46);
    border: none;
    cursor: pointer;
    font-weight: 400;
    border-radius: 3px;
    box-shadow: rgba(80, 80, 80, 0.35) 0px 5px 15px;
    transition: all .6s ease;
}

.declineButton:hover {
    background-color: #ebebeb;
    box-shadow: 0 10px 15px -3px #bebdbd, 0 4px 6px -2px #bebdbd;
    transition: 300ms ease-out;
}

.acceptButton:hover {
    background-color: var(--hover--btn-color-blue);
    transition: 300ms ease-out;
}