@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:800,400,500,700,600|Inter:400|Montserrat:700,400");

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

:root {}

body {
    overflow-x: hidden;
    width: 100%;
}

main {
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100000000;
}

.footer-contact-link {
    color: black;
    text-decoration: none;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    height: 10vh;
    background: #D9D9D9;
    font-family: "Montserrat", sans-serif;
    padding: 1rem;
    gap: 2rem;
}

.btn-edit,
.btn-delete {
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}

.btn-edit {
    background-color: #481E9C;
}

.btn-delete {
    background-color: #e30d0d;
}

.navbar-logo {
    padding: 0.2rem;
    max-width: 110px;
}

.navbar>a {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-content select {
    background: white;
    border: none;
    padding-inline: 0.7rem;
    display: flex;
    color: gray;
    border-radius: 10px;
    width: 20px;
}


.cols-container a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.cols-container a:hover li {
    color: #481E9C;
    font-weight: 600;
}

.controls-navbar {
    display: none;
    background: none;
    border: unset;
    color: #000;
    font-size: 1.8rem;
}

.navbar-items {
    display: flex;
    flex-direction: row;
    color: #000;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    gap: 20px;
}

.navbar-items li {
    padding: 10px 20px;
    border-radius: 24px;
    border: 20px solid transparent;
    background-clip: padding-box;
    margin: -20px;
}

.navbar-items li:hover,
.navbar-items li:active {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
}

.navbar-items li[data-lang="navbar-client-area"] {
    font-weight: bold;
}

.navbar-content {
    display: flex;
    flex-direction: row;
    top: 0;
}

.contactbar {
    color: white;
    background: black;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    padding: 0.3rem;
    height: 5vh;
    align-items: center;
}

.contactbar-items {
    display: flex;
    padding: 0.5rem;
    flex-direction: row;
    gap: 10px;
    padding-inline: 11vw;
    width: 100%;
    justify-content: inherit;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.contactbar-items .icons {
    display: flex;
    gap: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
    text-decoration: none;
}

.slide-down {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-down.active {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    background-color: #D9D9D9;
    color: #000;
    padding: 40px 20px;
    font-family: "Montserrat", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section p strong {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: -5px;
}

.footer-logo-div {
    max-width: 190px;
    padding-top: 25px;
}

.footer-subtitle {
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-socials a {
    color: #000;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #481E9C;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    padding-bottom: 5px;
    width: 80%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #481E9C;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.carousel-section {
    width: 100%;
    background-color: #D9D9D9;
    border-radius: 25px;
    padding: 20px;
    margin: 40px auto;
    max-width: 1150px;
}

.nav-redirect {
    text-decoration: none;
    color: #000;
}

.carousel-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

.carousel-text {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-text h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.carousel {
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 20px 50px;
    background: white;
    border-radius: 20px;
    width: 100%;
}

.carousel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    height: 100%;
    min-height: 80px;
}

.carousel-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel-item.left {
    transform: translateX(-33%) scale(1);
    opacity: 1;
    z-index: 1;
    left: 0;
}

.carousel-item.center {
    transform: translateX(0%) scale(1);
    opacity: 1;
    z-index: 1;
}

.carousel-item.right {
    transform: translateX(33%) scale(1);
    opacity: 1;
    z-index: 1;
    right: 0;
}

.carousel-item img {
    max-height: 130px;
    max-width: 130px;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background-color: rgba(72, 30, 156, 0.9);
    color: white;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.content-carousel-section {
    width: 100%;
    background-color: #ffffff;
    max-width: 1150px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.content-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-carousel-title {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0px;
}

.content-carousel-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.content-carousel {
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    padding: 40px 60px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-carousel-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    position: relative;
    height: 100%;
    min-height: 300px;
}

.whatsapp-content {
    position: fixed;
    bottom: auto;
    top: 100px;
    right: 15px;
    background: #42c042;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    overflow: hidden;
    width: 4.7rem;
    height: 4.7rem;
    transition: all 0.4s ease;
    animation: bounce 2s infinite;

}

.whatsapp-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    position: absolute;
    right: 8px;
    flex-direction: row-reverse;
}

.whatsapp-description {
    white-space: nowrap;
    font-size: 1rem;
    opacity: 0;
    margin-left: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    transition: opacity 0.3s ease;
    right: 40px;
    position: relative;
}

.whatsapp-content:hover {
    width: 195px;
    justify-content: space-around;
}

.whatsapp-content:hover .whatsapp-description {
    opacity: 1;
}

.whatsapp-content:hover .whatsapp-icon {
    margin-left: -1.5rem;
}

.content-carousel-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33%;
    height: 100%;
    padding: 20px;
    transform: scale(0.8) translateX(0);
    opacity: 0.7;
    transition: all 0.5s ease;
    z-index: 1;
}

.content-carousel-item.left {
    transform: translateX(-10%) scale(0.9);
    opacity: 0.8;
    z-index: 2;
    left: 0;
}

.content-carousel-item.center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.content-carousel-item.right {
    transform: translateX(10%) scale(0.9);
    opacity: 0.8;
    z-index: 2;
    right: 0;
}

.content-carousel-item .review-card {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
    min-height: 280px;
    height: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.content-carousel-item.center .review-card {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.review-name {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    flex: 1;
}

.review-stars {
    display: flex;
    margin-left: 10px;
}

.review-stars i {
    color: #ffd700;
    font-size: 1rem;
    margin-right: 2px;
}

.review-count {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-left: 5px;
    white-space: nowrap;
}


.navbar-items li.has-dropdown {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar-items li.has-dropdown:hover .arrow-icon, .navbar-items li.has-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    width: 1100px;
    max-width: 95vw;
    padding: 0;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;

    letter-spacing: normal;
    text-align: left;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.cols-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}

.cols-container ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dropdown-content-list {
    width: 77%;
    background-color: #F5F5F5;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    display: flex;
    position: relative;
}

.navbar-items li.has-dropdown:hover .dropdown-menu, .navbar-items li.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-container {
    display: flex;
    width: 100%;
    min-height: 350px;
}

.dropdown-sidebar {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    margin-left: 20px;
    font-family: "Montserrat", sans-serif;
    align-self: center;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 1px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.custom-select-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.custom-select-trigger span {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
}

#segmento {
    text-decoration: none;
    outline: none;
    color: #4c1d95;
    font-weight: bold
}


.flag-img {
    width: 26px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.custom-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 100px;
    overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(10px);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background-color: #f0f0f0;
}

.custom-option span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.dropdown-sidebar li {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 12px 0 0 12px;
    font-weight: 500;
    margin: 0;
    width: 100%;
    position: relative;
}

.dropdown-sidebar li.active {
    background-color: #F5F5F5;
    color: #000;
    font-weight: bold;
    box-shadow: none;
    z-index: 2;
    width: 110%;
}

.dropdown-sidebar li:hover {
    color: #481E9C;
}

.cols-container li {
    font-family: "Montserrat", sans-serif;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.cols-container li:hover {
    color: #481E9C;
    background: none;
    font-weight: bold;
}

.tab-content {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.client-area-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-icon i {
    font-size: 0.7rem;
    color: white;
    transition: all 0.3s ease;
}

.client-area-btn:hover .custom-icon {
    border-color: #481E9C;
    background-color: transparent;
    transform: translateX(5px);
}

.client-area-btn:hover .custom-icon i {
    color: #481E9C;
}

.phone {
    font-family: "Montserrat";
    font-weight: 800;
    font-size: 14px;
}

.first-section {
    display: flex;
    flex-direction: row;
    max-width: 1150px;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: calc(10vh + 5rem);
}

.admin-add-link {
    color: #481E9C;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.admin-add-button {
    display: none;
}

@media (max-width: 370px) {
    .custom-icon {
        display: none;
    }
}
@media (max-width: 450px) {
    .carousel-text h2 {
        font-size: 1.2rem;
    }

    .carousel {
        min-height: 80px;
        padding: 10px 30px;
    }

    .carousel-item img {
        max-height: 80px;
        max-width: 80px;
    }

    .carousel-control {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .carousel-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .carousel {
        padding: 15px 40px;
        height: 200px;
    }

    .carousel-item img {
        max-height: 100px;
        max-width: 100px;
    }

    .carousel-control {
        width: 30px;
        height: 30px;
    }

}
@media (max-width: 900px) {
    header {
        overflow: unset;
    }
    .custom-select-wrapper {
        margin: 20px auto;
        width: fit-content;
        top: 70px;
    }

    .custom-options {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-10px);
    }

    .custom-select-wrapper.open .custom-options {
        transform: translateX(-50%) translateY(10px);
    }
    .navbar {
        justify-content: space-around;
        position: relative;
        z-index: 1000;
    }

    .content-carousel-item {
        width: unset;
    }

    .content-carousel-item.right {
        transform: translateX(150%) scale(0.9);
    }

    .content-carousel-item.left {
        transform: translateX(-150%) scale(0.9);
    }

    .carousel-container {
        flex-direction: column;
    }

    .footer {
        text-align: center;
    }

    .navbar-content {
        flex-direction: column-reverse;
        background: #D9D9D9;
        position: fixed;
        top: -110vh;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding-block: 1.5rem;
        justify-content: flex-end;
        align-items: center;
        transition: all ease 0.3s;
        z-index: 99999;
    }

    .navbar-content.active {
        top: 0;
    }

    #btn-close {
        position: absolute;
        z-index: 10002;
        margin-top: 45px;
    }

    .navbar-content select {
        width: 93vw;
        height: 7vh;
        margin: 0 auto;
        margin-top: 50px;
        display: none;
    }

    .controls-navbar {
        display: block;
        background: none;
        border: none;
        color: #000;
        margin-top: -5px;
    }

    .navbar-items {
        flex-direction: column;
        font-size: x-large;
        margin-top: 70px;
    }

    .navbar-items li {
        width: 100vw;
    }

    .close-navbar-content {
        position: absolute;
        top: 0;
        margin: 7vw;
    }


    .navbar-items li.has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: all;
    }

    .dropdown-menu {
        position: fixed;
        top: 15vh;
        left: 50%;
        width: 90vw;
        max-width: 90vw;
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .dropdown-container {
        flex-direction: column;
        min-height: auto;
    }

    .dropdown-sidebar {
        width: 100%;
        flex-direction: column;
        padding: 15px;
        gap: 8px;
        overflow-x: hidden;
    }

    .dropdown-sidebar li {
        border-radius: 8px;
        padding: 10px 15px;
        white-space: normal;
        flex-shrink: 1;
    }

    .dropdown-content-list {
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 20px;
        overflow-y: auto;
        max-height: 55vh;
    }

    .cols-container {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-content-list::-webkit-scrollbar {
        width: 8px;
    }

    .dropdown-content-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .dropdown-content-list::-webkit-scrollbar-thumb {
        background: #481E9C;
        border-radius: 10px;
    }

    .navbar-items li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: all;
    }

    .navbar-items li.has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: all;
    }

    .dropdown-menu {
        position: fixed;
        top: 15vh;
        left: 50%;
        width: 90vw;
        max-width: 90vw;
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .dropdown-container {
        flex-direction: column;
        min-height: auto;
    }

    .dropdown-sidebar {
        width: 100%;
        flex-direction: column;
        padding: 15px;
        overflow-x: hidden;
        gap: 8px;
        border-radius: 20px 20px 0 0;
    }


    .dropdown-sidebar li {
        border-radius: 8px;
        padding: 10px 15px;
        white-space: normal;
        flex-shrink: 1;
        width: 100%;
    }


    .dropdown-content-list {
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 20px;
        overflow-y: auto;
        max-height: 55vh;
    }

    .cols-container {
        flex-direction: column;
        gap: 15px;
    }


    .dropdown-content-list::-webkit-scrollbar {
        width: 8px;
    }

    .dropdown-content-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .dropdown-content-list::-webkit-scrollbar-thumb {
        background: #481E9C;
        border-radius: 10px;
    }
}
@media (min-width: 1440px) {
    .navbar-items {
        font-size: 19px;
    }
}
@media (min-width: 2000px) {
    .navbar-items {
        font-size: 26px;
    }
}
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
