@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.ff-comfortaa {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.ff-open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* font-variation-settings:
    "wdth" 100; */
}

.text-bold,
.text-weight-700,
.text-strong {
  font-weight: 700;
}
.text-justify {
    text-align: justify;
}

.list-style-none {
    list-style: none;
}

body, html {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 0;
}

.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid #4ECDC4; /* Cor da borda - altere conforme sua cor primária */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
}

/* Cursor customizado - Círculo interno (preenchido) */
.cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #4ECDC4; /* Cor do preenchimento - altere conforme sua cor primária */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Efeito quando passa sobre elementos clicáveis */
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: #3bb3aa; /* Cor mais escura no hover */
}

.custom-cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
    background-color: #3bb3aa;
}

/* Efeito de clique */
.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Esconde o cursor customizado em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
    
    body, a, button {
        cursor: auto !important;
    }
}

/* Mantém cursor padrão em inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
    cursor: text !important;
}

.fs-13 {
    font-size: 13px!important;
}

.fs-14 {
    font-size: 14px!important;
}

.fs-15 {
    font-size: 15px!important;
}

.fs-16 {
    font-size: 16px!important;
}

.fs-18 {
    font-size: 18px!important;
}

.fs-24 {
    font-size: 24px!important;
}

.section-default {
    padding: 100px 0;

    @media (max-width: 767px) {
        padding: 80px 0;
    }
}

.font-weight-light {
    font-weight: 300!important;
}

.font-weight-400 {
    font-weight: 400!important;
}

/* cores padroes - variaveis */

:root {
    /* --color-primary: #46B79C; */
    --color-primary: #56dcbd;
    --color-primary-hover: #3A9680;
    --color-primary-dark: #173931;
    --color-secondary: #A5855C;
    --color-secondary-hover: rgb(248, 229, 206);
    --color-secondary-light: #FDF4E8;
    --color-text: #2D2D2D;
    --color-text-gray: #999999;
    --color-text-black: #000000;
    --color-white: #FFFFFF;
    --color-yellow: #FFD656;
    --color-limon: #7CFFE0;
}

.color-pimary {
    color: var(--color-primary)!important;
}

.color-primary {
    color: var(--color-primary);
}

.color-primary-dark {
    color: var(--color-primary-dark);
}

.color-secondary-light {
    color: var(--color-secondary-light);
}

.color-yellow {
    color: var(--color-yellow);
}

.color-white {
    color: var(--color-white);
}

.color-limon {
    color: var(--color-limon);
}

.bg-white {
    background-color: var(--color-white);
    color: var(--color-text-black);
}

.bgg-primary {
    background-color: var(--color-primary);
    color: #000;

    &:hover {
        background-color: var(--color-primary-hover);
        color: #fff;
        /* shadow */
        box-shadow: 0 4px 8px rgba(70, 183, 156, 0.3);
    }
}

.bg-secondary-light {
    background-color: var(--color-secondary-light);
    color: var(--color-text-black);

    &:hover {
        background-color: var(--color-secondary-hover);
        color: var(--color-text-black);
        /* shadow */
        box-shadow: 0 4px 8px rgba(165, 133, 92, 0.3);
    }
}

.btn-default {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;

    &:hover {
        background-color: transparent;

        &::before {
            width: 100%;
            transform: skew(0deg);
            left: 0;
        }
    }

    &::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -15%;
        right: 0;
        width: 0;
        height: 106%;
        background: var(--color-primary);
        transform: skew(45deg);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    /* colors bg */
    &.bg-secondary-light::before {
        background: var(--color-secondary-light);
    }

    &.btn-white::before {
        background: var(--color-secondary-light);
    }
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-text-black);

    &:hover {
        background-color: var(--color-secondary-light);
        color: var(--color-text-black);
        /* shadow */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

.icon-color-primary svg path {
    color: var(--color-primary);
}

.icon-color-primary-svg svg {
    color: var(--color-primary);
}


/* HEADER */

#header-main {
    position: relative;
    transition: all 0.3s ease;

    & img {
        transition: all 0.3s ease;
    }
}

#header-main.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    animation: slideDownHeader 0.4s ease forwards; /* Animação de descida */
    
    & .container {
        background: var(--color-white);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Animação de descida suave */
@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


nav.nav-main  {
    
    & a {
        color: var(--color-text);
        font-weight: 500;
        font-size: 14px;
        padding: 8px 2px;
        transition: color 0.3s ease;
        text-decoration: none;
        border-bottom: 2px solid transparent;

        &.active, &:hover {
            color: var(--color-primary);
            border-color: var(--color-primary);
        }
    }
}

header .btn-action {
    & a {
        background: var(--color-primary);
        color: #000;
        transition: all 0.3s ease;

        &:hover {
            background: var(--color-primary-hover);
            color: #fff;
            /* shadow */
            box-shadow: 0 4px 8px rgba(70, 183, 156, 0.3);
        }

        & span {
            font-size: 13px;
            font-weight: 500;
        }
    }
}

.navbar-toggler {
    width: 60px;
    height: 50px;
    background-color: var(--color-primary)!important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

}
.navbar-toggler-icon {
    color: var(--color-text-black)!important;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    display: inline-block;
}

/* Garante que o container do navbar seja relativo */
.navbar {
    position: relative;
}

button:focus:not(:focus-visible) {
    border: none;
    box-shadow: none;
}

/* Menu mobile absoluto */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: -83vw;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        z-index: 999;
        width: 100vw;
    }
    
    .navbar-collapse .navbar-nav {
        padding: 1.5rem 1rem;
    }
    
    .navbar-collapse .navbar-nav li {
        padding: 0 0;
        border-bottom: 1px solid #f0f0f0;

        &:last-child {
            border-bottom: none;
        }
    }

    .navbar-collapse .navbar-nav li a {
        display: block;
        text-align: center;
    }
}

/* HERO */

#hero {
    /* overflow: hidden; */

    & h5 {
        color: var(--color-text-black);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 400;
    }

    & h1 {
        font-size: 40px;
        font-weight: 700;
    }

    @media (max-width: 991px) {
        & h1 {
            font-size: calc(1rem + 1.5vw);
        }
    }

    & .content-left {
        padding-right: calc(4rem + 1.5vw);
    }

    @media (max-width: 991px) {
        & .content-left {
            padding-right: 0;
        }
    }

    .shape-rectangle {
        position: absolute;
        bottom: 80px;
        right: -400px;
        width: 1200px;
        height: 1200px;
        background: #EFFDF9;
        border-radius: 200px;
        z-index: -1;
        /* rotaciona */
        transform: rotate(108deg);

        @media (max-width: 991px) {
            right: inherit;
            bottom: inherit;
            top: 15%;
            left: 35%;
            width: 1000px;
            height: 1000px;
            border-radius: 80px;
            transform: rotate(140deg);
        }
    }

    .hero-img {
        position: relative;
        z-index: 1;

        & .img-hero-main {
            position: relative;
            left: -20px;
            max-width: 100%;

            @media (max-width: 767px) {
                left: 0;
            }
        }
    
        & .shape-circle {
            position: absolute;
            top: 40px;
            right: calc(-40px + 1.5vw);
            width: 340px;
            height: 340px;
            background: #FFEACF;
            border-radius: 50%;
            z-index: -1;

            @media (max-width: 991px) {
                width: 240px;
                height: 240px;
                right: 35%;
                transform: translateX(50%);
            }
        }

        .leaf-01 {
            position: absolute;
            top: -60px;
            right: calc(-280px - 1.5vw);
            z-index: 1;
            width: 178px;
            height: 227px;
            --scroll-y: 0px;
            animation: floatLeaf01 4s ease-in-out infinite;
        }

        .leaf-02 {
            position: absolute;
            bottom: 120px;
            right: -200px;
            width: 120px;
            height: 120px;
            z-index: 1;
            width: 361px;
            height: 311px;
            --scroll-y: 0px;
            animation: floatLeaf02 5s ease-in-out infinite;
        }
    }
}


/* Animações das folhas */
@keyframes floatLeaf01 {
    0%, 100% {
        transform: rotate(30deg) translateY(calc(var(--scroll-y) + 0px)) translateX(0px);
    }
    50% {
        transform: rotate(35deg) translateY(calc(var(--scroll-y) + -15px)) translateX(10px);
    }
}

@keyframes floatLeaf02 {
    0%, 100% {
        transform: translateY(calc(var(--scroll-y) + 0px)) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(calc(var(--scroll-y) + 20px)) translateX(-10px) rotate(-5deg);
    }
}


/* SOBRE */

#sobre {
    background: #F0F5F5;
    min-height: 500px;
}

.about-us-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 30px;
}

.about-img-1 {
  width: calc(40% - 15px);

  & figure  {
    border-radius: 12px;
    max-height: 472px;

    & img {
        margin-left: -100px;

        @media all and (max-width: 767px) {
            margin-left: -150px;
        }
    }
  }
}

.about-img-2 {
  width: calc(60% - 15px);
  position: relative;

  & figure  {
    border-radius: 15px;

    & img {
        margin-left: -20px;
        height: 100%;
       
        @media all and (max-width: 767px) {
            margin-left: -105px;
        }
    }
  }

  & .form-of-service {
    position: absolute;
    bottom: 60px;
    width: 170px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    background: url('../images/about/retangulo-atendimento.svg') no-repeat center center;
    background-size: 100%;

    & .icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px auto 5px auto;
        position: relative;
        top: -18px;

        & svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-primary);
        }
    }
    & .box {
            position: relative;
            top: -15px;
        }
  }
}


.about-img-2 img,
.about-img-1 img {
  aspect-ratio: 1 / 1.75;
  object-fit: cover;
}

.about-customer-box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E5EBEB;
  border-radius: 20px;
  width: 100%;
  max-width: 370px;
  padding: 25px 46px;
}

.about-customer-box .customer-images {
  display: flex;
  align-items: center;
}

.customer-img:first-child {
  margin: 0;
}

.customer-img {
  position: relative;
  display: inline-block;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  overflow: hidden;
  margin-left: -16px;
  width: 50px;
  height: 50px;
  z-index: 1;

   @media all and (max-width: 767px) {
    &.last {
            display: none;
        }
    }
}

.customer-img figure {
  display: block;
}

.customer-img img {
  max-width: 100%;
  border-radius: 50%;
}

.customer-img.add-more {
  width: 52px;
  height: 52px;
  background-color: var(--color-primary);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  & p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
}


.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.about-img-2 figure {
  display: block;
  mask-image: url(../images/about/shape2.svg);
  background-image: url(../images/about/shape2.svg);
  mask-size: cover;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.about-customer-content {
    & p {
        font-size: 21px;
        font-weight: 800;
        line-height: 24px;

        & .sub {
            line-height: 18px;
        }
    }
}

.about-customer-rating {
    svg {
        max-width: 20px;
        fill: var(--color-primary);
        color: var(--color-primary);
    }
}


@media only screen and (max-width: 991px) {
  .about-customer-box {
    max-width: 345px;
    padding: 35px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about-customer-box {
    max-width: 210px;
    padding: 15px 20px;

    & p {
        font-size: 16px;
        line-height: 20px;
    }
  }
}


.section-title {
    & h1, & .h1 {
        font-size: calc(.9rem + 1vw);
        font-weight: 700;
    }
}

.h1 {
    @media all and (max-width: 767px) {
        font-size: 25px!important;
    }
}

.list-about {
    padding: 30px 0;
    border-top: 1px solid #DBDDDD;
    border-bottom: 1px solid #DBDDDD;
    margin: 20px 0;
    float: left;
    width: 100%;

    svg {
        min-width: 24px;
    }
}


/* SERVIÇOS */

#servicos {
    & .card-service {
        padding: 35px;
        border-radius: 12px;
        border: 1px solid #E0E0E0;
        transition: all 0.3s ease;

        & h4 {
            font-size: 22px;
            font-weight: bold;
        }
        & p {
            font-size: 14px;
            color: var(--color-text-gray)
        }

        & a {
            display: inline-block;
            text-decoration: none;
            color: var(--color-text-black);
            font-weight: 600;
            font-size: 14px;
        }

        &:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
            background-color: #E5EBEB;

            & h4, & a:hover {
                color: var(--color-primary);
            }
        }
    }
}

/* COMO FUNCIONA */

#como-funciona {
    background: #F5F9F9;
    background: linear-gradient(180deg,rgba(245, 249, 249, 1) 0%, rgba(255, 255, 255, 0) 100%);   

    & .box-steps {
        background: #fff;
background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        padding: 100px 30px;
        position: relative;
        border-radius: 50px;

        @media (max-width: 767px) {
            padding: 20px 0 0 0;
        }
        
        &::after {
            content:"";
            display: block;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            height: 100px;
            background: var(--color-primary);
            z-index: -1;
            /* blur */
            filter: blur(50px);
            opacity: .5
        }

        & .content-dynamic {
            position: relative;

            & .content-item-step {
                display: none;
                
                &.active {
                    display: block;
                }
            }
           
            img {
                border-radius: 25px;
                position: relative;
                left: -30px;
            }

            & .box-item-white {
                background: var(--color-white);
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                padding: 12px 24px;
                position: absolute;
                top: 40px;
                right: 4%;

                & svg {
                    width: 32px;
                    height: 32px;
                }

            }

            & .box-item-botom {
                background: var(--color-primary);
                /* box shadow color primary */
                box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
                border-radius: 12px;
                padding: 12px 20px;
                position: absolute;
                bottom: -30px;
                left: 20px;
                font-weight: 500;

                & .small {
                    line-height: 10px;
                }
                & p.big {
                    font-size: 25px;
                }

                & svg {
                    width: 38px;
                    height: 38px;
                    stroke: #fff;
                }
            }
        }

        & .content-controls {
            & button {
                width: 100%;
                height: auto;
                border: none;
                background: none;
                transition: all 0.3s ease;

                & svg {
                    transition: all 0.3s ease;
                }

                &:hover, &.active {
                    /* background: #f0f0f0; */
                     & .icon-wrapper {
                        background: var(--color-primary)
                     }
                    & svg {
                        stroke: var(--color-white);
                    }
                }

                & .bar-progress {
                    display: block;
                    min-width: 5px;
                    height: 110%;
                    min-height: 130px;
                    background: #D9D9D9;
                    position: relative;

                    &::before {
                        content:"";
                        display: block;
                        width: 5px;
                        height: 0%;
                        background: var(--color-primary);
                        position: absolute;
                        left: 0;
                        top: 0;
                    }
                }

                & .icon-wrapper {
                    padding: 14px 15px;
                    background: #fff;
                    border-radius: 12px;
                    transition: all 0.3s ease;
                }

                & h6 {
                    font-size: 25px;
                    color: var(--color-text-black)
                }

                & p {
                    color: #2D2D2D;
                }

                &.active {
                    & h6 {
                        color: var(--color-primary);
                    }
                    & .bar-progress::before {
                        animation: heightSteps 10s ease-in-out;
                    }
                }
            }
        }
    }

    & .circle-01 {
        position: absolute;
        width: 260px;
        height: 260px;
        background: #FFEACF;
        border-radius: 50%;
        top: 20%;
        transform: translateY(50%);
        right: -150px;
        z-index: -1;
    }

    & .circle-02 {
        position: absolute;
        width: 145px;
        height: 145px;
        background: #F0F5F5;
        border-radius: 50%;
        bottom: 420px;
        right: -200px;
        z-index: -1;
    }
}

@keyframes heightSteps {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}



/* DEPOIMENTOS */

#depoimentos {
    background: url('../images/testemionals/forma-esquerda.webp') no-repeat left top, url('../images/testemionals/forma-direita.webp') no-repeat right top;
}
.testimonialsSwiper {
    padding: 40px 20px 60px;

    & .card {
        border: none;
        background-color: #F4F4F4;
        padding: 30px 20px 150px 20px;
        border-radius: 12px;
        position: relative;
    }
    & .card-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        min-width: 70%;
        /* border-radius top right */
        border-top-right-radius: 12px;
    }
    & .card-text {
        font-size: 14px;
    }
}

.swiper-slide {
    height: auto;
}

.swiper-slide .card {
    height: 100%;
}

/* Customização dos bullets */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary); /* Substitua pela sua cor primária */
    opacity: 1;
}

/* Customização das setas (opcional) */
.swiper-button-prev,
.swiper-button-next {
    color: var(--color-primary); /* Substitua pela sua cor primária */
}

/* Se quiser esconder as setas no mobile */
@media (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}


/* BLOG */

#blog {
    background-color: #32826f;
    overflow: hidden;
    position: relative;

    & .circle-01 {
        width: 216px;
        height: 216px;
        background: #50C7AA;
        border-radius: 50%;
        position: absolute;
        top: 60%;
        left: 10%;
        transform: translateY(-50%);
        opacity: .2;
    }

    & .circle-02 {
        width: 395px;
        height: 395px;
        background: #FFEACF;
        border-radius: 50%;
        position: absolute;
        bottom: 5%;
        left: -6%;
        opacity: .1;
    }

    & .circle-03 {
        width: 470px;
        height: 470px;
        background: #4EBFA4;
        border-radius: 50%;
        position: absolute;
        top: 25%;
        right: -2%;
        opacity: .1;
    }

    & .folha {
        position: absolute;
        right: 0;
        bottom: -180px;
        z-index: 3;
    }


    & .container {
        position: relative;

        &::before, &::after {
            content:"";
            display: block;
            width: 1000px;
            height: 800px;
            background: #1F5145;
            border-radius: 50%;
            position: absolute;
            top: -350px;
            left: -30%;
            filter: blur(150px);
            z-index: 1;
        }

        &::after {
            width: 1300px;
            
            top: 60%;
            left: inherit;
            right: 0;
        }

        & header {
            position: relative;
            z-index: 2;
        }
    }
}

.blogSwiper {
    padding: 40px 20px 60px;
    position: relative;
    z-index: 10!important;
}

.blogSwiper .swiper-slide {
    height: auto;
}

.blogSwiper .card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    & a {
        padding-top: 22px;
        border-top: 1px solid #EEEEEE;
        font-size: 14px;
        font-weight: bold;
    }
}

.blogSwiper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.blogSwiper .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blogSwiper .badge {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 12px;
    top: 14px!important;
    display: inline-block;
}

.blogSwiper .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.blogSwiper .card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.blogSwiper .btn-link {
    color: #4ECDC4;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blogSwiper .btn-link:hover {
    color: #3bb3aa;
    gap: 0.75rem !important;
}

.blogSwiper .btn-link svg {
    transition: transform 0.3s ease;
}

.blogSwiper .btn-link:hover svg {
    transform: translateX(5px);
}

/* Customização dos bullets */

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
}

.blogSwiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    width: 20px;
    height: 20px;
}

.blogSwiper .swiper-pagination-bullet-active {
    background: #4ECDC4;
    opacity: 1;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
    .blogSwiper .card-img-top {
        height: 180px;
    }
    
    .blogSwiper .card-title {
        font-size: 1rem;
    }
    
    .blogSwiper .card-text {
        font-size: 0.9rem;
    }
}


/* NA MÍDIA */

#na-midia {

    & .container {
        position: relative;;
    }
    
    & .folha {
        position: absolute;
        right: -250px;
        top: -250px;
        z-index: 3;
        animation: movimentFolha 5s ease-in-out infinite;
    }
}

@keyframes movimentFolha {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* NA MIDIA */

#na-midia {
    background: url('../images/testemionals/forma-esquerda.webp') no-repeat left 130%;
}

.media-card {
    color: #fff;
    position: relative;
    min-height: 110px;
    padding-left: 75px!important;
    padding-right: 70px!important;

    @media (max-width: 767px) {
        padding-left: 20px!important;
        padding-right: 20px!important;
    }

    &.bg-01 {
        background: linear-gradient(-135deg, #191414 0%, #296C5C 100%);
    }
    &.bg-02 {
        background: linear-gradient(135deg, #191414 0%, #296C5C 100%);
    }

    & .icon-wrapper {
        min-width: 80px;
        min-height: 80px;
        border-radius: 50%;
        background: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        text-align: center;
        left: -40px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.6s ease;

        @media (max-width: 767px) {
            left: 0;
            position: relative;
            margin-right: 15px;
        }
    }

    &:hover {
        & .icon-wrapper {
            left: -30px;
        }
    }

    
}

.media-card .media-logo {
    width: 45px;
    height: auto;
}

.podcast-card {
    padding-left: 150px!important;
    position: relative;
    left: -160px;
    top: -20px;
    border-radius: 24px!important;
    min-width: 450px;

    &.bg-01 {
        background: linear-gradient(-35deg, #191414 0%, #191414 30%, #0f3d31 100%);
    }

    & h5 {
        font-size: 25px;
    }

    @media (max-width: 767px) {
       padding: 20px!important;
       min-width: auto;
       left: 0;
       top: 0;
       margin-top: 15px;
    }
}

.spotify-logo {
    max-width: 160px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e4e4e4;
}

 #content-img-person {
    @media (max-width: 991px) {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 150px;
    }
}

.main-person {
    object-fit: contain;
    position: relative;
    z-index: 3;
}

.container-midia {
    padding-left: calc(20px + 1.5vw);

    & .col-left {
        min-width: 350px;
        & article {
            position: relative;

            &.first {
               left: 120px;
            }

            &.second {
               left: 60px;
            }
           
            &.last {
               left: 80px;
            }

             @media (max-width: 991px) {
                position: inherit;
                left: 0!important;
                &.left, &.second, &.last {
                    left: 0;
                }
             }
        }
        

        @media (max-width: 991px) {
            min-width: auto;
            position: relative;
            z-index: 4;
        }
    }
    @media (max-width: 991px) {
        padding-left: 0;
        padding-top: 350px;
    }
}

.bg-workshop {
    background: linear-gradient(35deg, #191414 0%, #191414 30%, #0f3d31 100%);
    color: var(--color-white);
    

    & a {
        color: var(--color-primary);
    }
}

.service-card {
    padding-left: 120px!important;
    padding-right: 70px;
    border-radius: 25px!important;
    position: relative;
    min-width: 300px;
    left: -100px;
    top: 10px;

    & h5 {
        font-size: 25px;
    }

    & .icon {
        position: absolute;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
        animation: movimentMicrophone 5s ease-in-out infinite;
    }

    @media (max-width: 991px) {
       padding: 35px 70px!important;
       min-width: auto;
       left: 0;
       top: 0;
       margin-top: 15px;
    }

    @media (max-width: 767px) {
        padding: 20px 50px 20px 20px!important;
        margin-top: 10px;
    }
   
}

@keyframes movimentMicrophone {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-60%) rotate(-10deg);
    }
}

/* CONTATO */

#contato {
    background: #1D2A26;
    position: relative;

    &::before {
        content:"";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 50%;
        left: -20%;
        transform: translateY(-50%);
        background: url('../images/contact/mapa.webp') no-repeat center center;
        opacity: .5;
    }

    &::after {
        content:"";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0%;
        right: 0;
        background: url('../images/contact/background.webp') no-repeat right center;
        background-size: contain;
        opacity: .2;

        @media all and (max-width: 991px) {
            background-size: cover;
        }
    }

    & .card {
        background: #1B3730;
        position: relative;
        max-width: 520px;
        width: 100%;

        & .icon-wrapper {
            width: 86px;
            height: 86px;
            background: var(--color-secondary-light);
            border-radius: 50%;
        }

        & .list-contact {

            & li {
                border-bottom: 1px solid #11211d;
                border-top: 1px solid #2d5a4f;
                padding: 20px 0;

                &:first-child {
                    border-top: none;
                }

                &:last-child {
                    border-bottom: none;
                }
            }
            .icon-wrapper {
                width: 65px;
                height: 65px;
            }

            & a:hover {
                color: var(--color-primary);
            }
        }

        & a.link-map {
            position: absolute;
            bottom: 0;
            right: 0;
            border-top-left-radius: 30px;
            border-bottom-right-radius: 12px;
            background-color: var(--color-secondary-light);
            padding-top: 4px;
            padding-bottom: 4px;
        }
    }
}

/* FOOTER */ 

footer {
    background-color: #1D2A26;
    background: linear-gradient(0deg, #1b493e 0%, #1D2A26 100%);

    & a {
        color: #FFEACF!important;
        text-decoration: none;

    }
}

/* whatsapp */

  .whatsapp-group {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1050;
  }

  .whatsapp-card {
    background-color: #09623C;
    width: 16rem;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .whatsapp-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
  }

  .whatsapp-chat {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  .whatsapp-group:hover .whatsapp-chat {
    max-height: 300px;
    padding: 0.75rem;
  }

  .whatsapp-icon {
    position: absolute;
    top: 0.9rem;
    right: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .whatsapp-group:hover .whatsapp-icon {
    opacity: 1;
  }