
:root {
    --header-height: 4.5rem;
    --first-color: #0099CC;
    --first-color-alt: #0088BB;
    --first-color-light: #00D4FF;
    --title-color: #1A1A1A;
    --text-color: #4A4A4A;
    --text-color-light: #8A8A8A;
    --body-color: #FFFFFF;
    --container-color: #F8F9FA;

    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
}

body::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 5rem 0 2rem;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section__subtitle {
    display: inline-block;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--mb-0-5);
}

.section__title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
}

.section__description {
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
    color: var(--first-color);
}

.nav__logo i {
    font-size: 1.8rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav__list {
    display: flex;
    column-gap: 2.5rem;
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--first-color);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--first-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: var(--transition);
    cursor: pointer;
}

.button--primary {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.4);
}

.button--secondary {
    background-color: transparent;
    color: var(--first-color);
    border: 2px solid var(--first-color);
}

.button--secondary:hover {
    background-color: var(--first-color);
    color: white;
}

.home {
    padding-top: calc(var(--header-height) + 2rem);
    overflow: hidden;
}

.home__container {
    position: relative;
    row-gap: 3rem;
}

.home__content {
    position: relative;
    z-index: 1;
}

.home__subtitle {
    display: inline-block;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color);
    margin-bottom: var(--mb-0-75);
}

.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: var(--mb-1-5);
}

.home__title span {
    color: var(--first-color);
}

.home__description {
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
    font-size: 1.1rem;
    line-height: 1.8;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--mb-3);
}

.home__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--mb-3);
}

.home__stat {
    text-align: center;
}

.home__stat h3 {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--first-color);
    margin-bottom: var(--mb-0-25);
}

.home__stat p {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.home__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__blob {
    width: 400px;
    fill: var(--first-color);
    filter: blur(112px);
    position: absolute;
    opacity: 0.3;
}

.home__img {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 153, 204, 0.3);
}

.home__icon {
    font-size: 8rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.services {
    background-color: var(--container-color);
}

.services__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services__card {
    background-color: var(--body-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--first-color), var(--first-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.15);
}

.services__card:hover::before {
    transform: scaleX(1);
}

.services__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    border-radius: 1rem;
    margin-bottom: var(--mb-1-5);
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
}

.services__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--title-color);
}

.services__description {
    color: var(--text-color-light);
    margin-bottom: var(--mb-1-5);
    line-height: 1.7;
}

.services__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--first-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
}

.services__button:hover {
    gap: 1rem;
    color: var(--first-color-light);
}

.about {
    background-color: var(--container-color);
}

.about__container {
    row-gap: 3rem;
}

.about__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    object-fit: cover;
    transition: var(--transition);
}

.about__img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 153, 204, 0.3);
}

.about__blob {
    width: 400px;
    fill: var(--first-color);
    filter: blur(112px);
    position: absolute;
    opacity: 0.3;
    z-index: 0;
}

.about__content {
    text-align: center;
}

.about__description {
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-2-5);
}

.about__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.about__info-item i {
    font-size: 2rem;
    color: var(--first-color);
    flex-shrink: 0;
}

.about__info-item h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.about__info-item p {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.ceo {
    background-color: var(--body-color);
}

.ceo__container {
    row-gap: 3rem;
    align-items: center;
}

.ceo__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo__img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    object-fit: cover;
    transition: var(--transition);
}

.ceo__img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 153, 204, 0.3);
}

.ceo__blob {
    width: 400px;
    fill: var(--first-color);
    filter: blur(112px);
    position: absolute;
    opacity: 0.3;
    z-index: 0;
}

.ceo__content {
    text-align: left;
}

.ceo__name {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: var(--mb-0-5);
}

.ceo__position {
    font-size: var(--h3-font-size);
    color: var(--first-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-2);
}

.ceo__description {
    color: var(--text-color-light);
    margin-bottom: var(--mb-2-5);
    line-height: 1.8;
    font-size: 1.1rem;
}

.ceo__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--mb-2-5);
}

.ceo__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ceo__info-item i {
    font-size: 2rem;
    color: var(--first-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ceo__info-item h4 {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    margin-bottom: var(--mb-0-25);
    font-weight: var(--font-semi-bold);
}

.ceo__info-item p {
    color: var(--text-color-light);
    font-size: var(--normal-font-size);
    margin: 0;
}

.ceo__quote {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 153, 204, 0.3);
}

.ceo__quote i {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.ceo__quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 var(--mb-1) 0;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.ceo__quote-author {
    display: block;
    text-align: right;
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    opacity: 0.9;
}

.contact__container {
    display: flex;
    justify-content: center;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.contact__card {
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.15);
}

.contact__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--mb-1-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
}

.contact__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-75);
    color: var(--title-color);
}

.contact__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

.main {
    flex: 1;
    width: 100%;
}

.footer {
    background-color: var(--title-color);
    color: white;
    padding: 3rem 0 0;
    margin: 0;
    margin-top: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.footer__container {
    row-gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.footer__logo i {
    font-size: 1.8rem;
    color: var(--first-color-light);
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--mb-1-5);
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--first-color);
    transform: translateY(-3px);
}

.footer__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: white;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--first-color-light);
    padding-left: 0.5rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact i {
    color: var(--first-color-light);
    margin-top: 0.25rem;
}

.footer__copy {
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer__copy p {
    margin: 0;
    padding: 0;
}

body>footer:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer__container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer__copy {
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
}

.footer__copy:last-child {
    padding-bottom: 1rem !important;
}

html {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    height: auto !important;
}

body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    height: auto !important;
}

.scrolltop {
    position: fixed;
    right: 2rem;
    bottom: -20%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-light));
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
    transition: var(--transition);
    z-index: var(--z-tooltip);
}

.scrolltop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.4);
}

.scrolltop.show-scroll {
    bottom: 2rem;
}

.whatsapp-float.scroll-visible {
    bottom: 80px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 2rem;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-tooltip);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--title-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: var(--small-font-size);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media screen and (min-width: 968px) {
    .home__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .ceo__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contact__container {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media screen and (max-width: 967px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .home__buttons {
        flex-direction: column;
    }

    .home__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}


@media screen and (max-width: 576px) {
    .home__title {
        font-size: 2rem;
    }

    .home__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services__container,
    .products__container {
        grid-template-columns: 1fr;
    }

    .about__img {
        height: 300px;
        max-width: 100%;
    }

    .ceo__img {
        height: 400px;
        max-width: 100%;
    }

    .ceo__name {
        font-size: 2rem;
    }

    .ceo__content {
        text-align: center;
    }

    .ceo__info {
        align-items: center;
        text-align: center;
    }

    .scrolltop {
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 1rem;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.services__card,
.products__card,
.contact__card {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--first-color);
    color: white;
}

.services__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.services__card:hover .services__image img {
    transform: scale(1.08);
}

.brands {
    padding: 4rem 0;
    text-align: center;
   
}

.brands__slider {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.brands__track {
    display: flex;
    width: max-content;
    animation: scrollBrands 20s linear infinite;
}




.brands__item img:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

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

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

@media screen and (max-width: 1024px) {
    .brands__item {
        flex: 0 0 120px;
        margin: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .brands__item {
        flex: 0 0 100px;
        margin: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .brands__item {
        flex: 0 0 80px;
        margin: 0 0.5rem;
    }
}

.brands__cta {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem 1rem;
}

.brands__cta p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0099CC;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .brands__cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .brands__cta p {
        font-size: 0.9rem;
        
    }
}

.brands__item {
    flex: 0 0 150px;
    margin: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.brands__item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .brands__item {
        flex: 0 0 180px;
        margin: 0 1.5rem;
    }

    .brands__item img {
        max-height: 100px;
    }

}

@media screen and (max-width: 768px) {
    .brands__item {
        flex: 0 0 150px;
        margin: 0 1rem;
    }
    .brands__item img {
        max-height: 90px;
    }

}

@media screen and (max-width: 480px) {
    .brands__item {
        flex: 0 0 120px;
        margin: 0 0.5rem;
    }

    .brands__item img {
        max-height: 80px;
    }

}

.premium-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0099CC, #00D4FF);
    color: #fff;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-whatsapp i {
    font-size: 1.2rem;
}

.premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00D4FF, #0099CC);
}


.contact__map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .contact__map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact__map iframe {
        height: 220px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        background-color: #fff;
    }
}

@media screen and (max-width: 768px) {

    .nav__menu {
        position: fixed;
        top: 1rem;
        right: -100%;
        width: 55%;
        max-height: 65vh;
        background-color: #ffffff !important;
        opacity: 1 !important;
        padding: 1rem 0.6rem;
        border-radius: 14px;
        box-shadow: -6px 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.35s ease;
    }

    .nav__menu.show-menu {
        right: 1rem;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        margin-top: 2rem;
    }

    .nav__link {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: #222;
        border-radius: 8px;
        background: transparent;
        text-align: left;
        transition: background 0.2s ease, transform 0.15s ease;
    }

    .nav__link.active-link {
        background: linear-gradient(135deg, #00bfff, #0099cc);
        color: #ffffff;
    }

    .nav__link:active {
        transform: scale(0.97);
        background: rgba(0, 191, 255, 0.12);
    }

    .nav__link:hover {
        background: rgba(0, 191, 255, 0.08);
    }

    .nav__link::after {
        display: none !important;
    }

    .nav__close {
        position: absolute;
        top: 0.6rem;
        right: 0.6rem;
        font-size: 1.2rem;
        color: #222;
        cursor: pointer;
    }
}

.horario-card {
    border: 2px solid #0099CC;
    border-radius: 12px;
    padding: 15px;
    max-width: 300px;
    background: #f0f8ff;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.horario-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0099CC;
}

.horario-card__lista {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.horario-card__lista li {
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
}

.horario-card__lista li.dia-atual {
    background: #0099CC;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 8px;
}

.horario-card__status {
    font-weight: 700;
    margin-top: 5px;
    font-size: 1rem;
}

.aberto {
    color: green;
}

.fechado {
    color: red;
}

.horario-card__hora {
    font-size: 0.9rem;
    color: #333;
    margin-top: 3px;
    font-style: italic;
}



