@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --brand: #fd9103bb;
    --dark: #fd91036b;
    --body: #f3f3f3;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-transform: capitalize; */
    text-decoration: none;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-size: cover;
    background-position: center;
    color: var(--body);
    font-family: Poppins;
    font-size: 12px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 18px;
}
/* 
header.scrolled {
    /* background: rgba(255, 255, 255, 1); */
    /* Solid background when scrolled 
} 
*/

header .logo {
    font-size: 25px;
    font-weight: bolder;
    color: var(--brand);
}

header .logo img {
    max-height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 16px;
    color: var(--brand);
    padding: 20px;
    display: block;
    font-weight: 500;
    border-radius: 5px;
}

header .navbar ul li.active>a,
/* Estiliza o item de menu 'Serviços' quando ativo */
header .navbar ul li:hover>a {
    background: #333;
    color: #fff;
}

header .navbar ul .submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

header .navbar ul .submenu.active {
    display: block;
}

header .navbar ul li:hover>.submenu {
    display: block;
}

header .navbar ul .submenu li {
    position: relative;
}

header .navbar ul .submenu li a {
    padding: 10px 20px;
    font-size: 18px;
    color: var(--brand);
    /* Matching the main navbar color */
}

header .navbar ul .submenu li a:hover {
    background: #333;
    color: #fff;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    margin: 3px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effects for each social icon */

.social-icons .facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

.social-icons .instagram:hover {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons .whatsapp:hover {
    color: #fff;
    background: #25d366;
}

/* carousel */
.carousel {
    height: 100vh;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
}

/* .carousel .list .item .author img{
    width: 10%;
    height: 10%;
} */

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 3.7em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #f1683a;
}

.carousel .list .item .des {
    font-size: 16px;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    border-radius: 5px;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;

    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.carousel .list .item .buttons button:hover {
    background-color: var(--dark);
    border-color: var(--brand);
    color: #fff;
    cursor: pointer;
}

.carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

.carousel .list .item .buttons button:nth-child(2):hover {
    background-color: #ffffff;
    border-color: #fff;
    color: rgba(0, 0, 0, 0.774);
    font-weight: 600;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 0px;
    /* Ajusta para preencher até o fundo */
    left: 0px;
    /* Ajusta para preencher até a lateral esquerda */
    right: 0px;
    /* Ajusta para preencher até a lateral direita */
    top: 160px;
    /* Ajusta para preencher até o topo */
    background-color: rgba(0, 0, 0, 0.5);
    /* Adiciona uma camada transparente */
    padding: 10px;
    /* Adiciona padding para melhor visualização */
    border-radius: 0px 0px 18px 18px;
    /* Adiciona bordas arredondadas */
}

.thumbnail .item .content .title {
    font-weight: 500;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 10;
}

.nav-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--brand);
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 28px;
}

.nav-btn-left {
    left: 20px;
}

.nav-btn-right {
    right: 20px;
}

/* Responsive adjustments for navigation buttons */
@media screen and (max-width: 768px) {
    .nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .nav-btn i {
        font-size: 22px;
    }
    
    .nav-btn-left {
        left: 10px;
    }
    
    .nav-btn-right {
        right: 10px;
    }

    .carousel .list .item .topic {
        font-size: 2.5em;
        font-weight: bold;
        line-height: 1.3em;
    }
}

/* End arrows */

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/* modern dropdown menu */

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 16px;
    color: #fff;
    padding: 15px;
    display: block;
}

header .navbar ul li a:hover {
    background: #333;
    color: #cacacaee;
    transition: 0.5s;
}

header .navbar ul li:hover .submenu {
    display: block;
}

header .navbar ul .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 1000;
}

header .navbar ul .submenu li {
    float: none;
}

header .navbar ul .submenu li a {
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
}

header .navbar ul .submenu li a:hover {
    background: #333;
    color: #fff;
}

header .navbar ul .submenu li ul li a {
    left: 200px;
    top: 0;
}

/* End modern dropdown menu */

/* Quem somos section */

section .sobre-nos{
    background-size: cover;
    background-position: center;
    color: var(--body);
    font-family: Poppins;
    font-size: 12px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: flex-start;
    background-color: var(--body);
    box-sizing: border-box;
}

.text-blk {
    margin: 0;
    padding: 10px;
    line-height: 25px;
}

.responsive-container-block.bigContainer {
    padding: 10px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainImg {
    color: black;
    width: 55%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
    border-radius: 10px;
}

.text-blk.headingText {
    font-size: 25px;
    font-weight: 700;
    line-height: 34px;
    color: rgb(51, 51, 51);
    padding: 0 10px;
    margin: 0 0 10px 0;
}

.allText {
    padding: 0;
    margin: 0 0 0 40px;
    width: 40%;
}

.text-blk.subHeadingText {
    color: rgb(102, 102, 102);
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
    padding: 0 10px;
    margin: 0 0 15px 0;
}

.text-blk.description {
    font-size: 25px;
    line-height: 34px;
    color: rgb(102, 102, 102);
    margin: 0 0 50px 0;
    padding: 0 10px;
}

.explore {
    font-size: 20px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: rgb(244, 152, 146);
    padding: 10px 50px;
    border: none;
    cursor: pointer;
}

.explore:hover {
    background-color: rgb(255, 235, 234);
    color: rgb(244, 152, 146);
}

.responsive-container-block.Container {
    margin: 80px auto 50px auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding: 10px;
}

.responsive-container-block.Container.bottomContainer {
    margin: 100px auto 50px auto;
    flex-direction: row-reverse;
}

.allText.aboveText {
    margin: 0 0 0 40px;
}

.allText.bottomText {
    margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        max-width: 850px;
    }

    .mainImg {
        width: 55%;
        height: auto;
    }

    .text-blk.description {
        font-size: 20px;
    }

    .allText {
        width: 40%;
        margin: 0 0 0 20px;
    }

    .responsive-container-block.bigContainer {
        padding: 10px;
    }

    .text-blk.subHeadingText {
        font-size: 22px;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 80px auto 50px auto;
    }

    .allText.aboveText {
        margin: 30px 0 0 40px;
    }

    .allText.bottomText {
        margin: 30px 40px 0 0;
    }
}

@media (max-width: 768px) {
    .mainImg {
        width: 90%;
    }

    .allText {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .responsive-container-block.Container {
        flex-direction: column;
        height: auto;
    }

    .text-blk.headingText,
    .text-blk.subHeadingText,
    .text-blk.description {
        text-align: center;
    }

    .text-blk.headingText {
        font-size: 30px;
    }

    .text-blk.subHeadingText {
        font-size: 20px;
    }

    .text-blk.description {
        font-size: 18px;
    }

    .allText {
        margin-top: 40px;
    }

    .allText.aboveText {
        margin: 40px 0 0 0;
    }

    .responsive-container-block.Container {
        margin: 80px auto 50px auto;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 50px auto 50px auto;
    }

    .allText.bottomText {
        margin: 40px 0 0 0;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.Container {
        padding: 10px 0;
        width: 100%;
        max-width: 100%;
    }

    .mainImg {
        width: 100%;
    }

    .responsive-container-block.bigContainer {
        padding: 10px 25px;
    }

    .text-blk.subHeadingText,
    .text-blk.description {
        font-size: 25px;
        padding: 0;
    }

    .allText {
        padding: 0;
        width: 100%;
    }
}

/* End Quem somos section */

/* Nossos valores??? */

/* section {
    background-size: cover;
    background-position: center;
    background-color: wheat;
    
    color: var(--body);
    font-family: Poppins;
    font-size: 12px;
} */

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: flex-start;
    background-color: var(--body);
    box-sizing: border-box;
}

.text-blk {
    margin: 0;
    padding: 10px;
    line-height: 25px;
}

.responsive-container-block.bigContainer {
    padding: 10px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainImg {
    color: black;
    width: 55%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 10px 7px;
    border-radius: 10px;
    padding: 15px;
}

.text-blk.headingText {
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    color: rgb(51, 51, 51);
    padding: 0 10px;
    margin: 0 0 30px 0;
    position: relative;
}

/* Linha abaixo Quem Somos */
.text-blk.headingText::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, var(--brand), var(--dark));
    position: absolute;
    bottom: -10px;
    left: 10px;
}

/* End Linha abaixo Quem Somos */

.allText {
    padding: 0;
    margin: 0 0 0 40px;
    width: 40%;
}

.text-blk.subHeadingText {
    color: rgb(102, 102, 102);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    padding: 0 10px;
    margin: 0 0 15px 0;
}

.text-blk.description {
    font-size: 18px;
    line-height: 32px;
    color: rgb(102, 102, 102);
    margin: 0 0 30px 0;
    padding: 0 10px;
}

/* botão Quem somos*/
.explore {
    font-size: 18px;
    font-family: Poppins;
    font-weight: 500;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: var(--brand);
    color: #fff;
    border: none;
    padding: 10px 50px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.explore:hover {
    background-color: var(--dark);
    border-color: var(--brand);
    color: #fff;
    cursor: pointer;
}

/* End botão Quem somos*/

.responsive-container-block.Container {
    margin: 80px auto 50px auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding: 10px;
}

.responsive-container-block.Container.bottomContainer {
    margin: 100px auto 50px auto;
    flex-direction: row-reverse;
}

.allText.aboveText {
    margin: 0 0 0 40px;
}

.allText.bottomText {
    margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        max-width: 850px;
    }

    .mainImg {
        width: 55%;
        height: auto;
    }

    .text-blk.description {
        font-size: 18px;
    }

    .allText {
        width: 40%;
        margin: 0 0 0 20px;
    }

    .responsive-container-block.bigContainer {
        padding: 10px;
    }

    .text-blk.subHeadingText {
        font-size: 22px;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 80px auto 50px auto;
    }

    .allText.aboveText {
        margin: 30px 0 0 40px;
    }

    .allText.bottomText {
        margin: 30px 40px 0 0;
    }
}

@media (max-width: 768px) {
    .mainImg {
        width: 90%;
    }

    .allText {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .responsive-container-block.Container {
        flex-direction: column;
        height: auto;
    }

    .text-blk.headingText,
    .text-blk.subHeadingText,
    .text-blk.description {
        text-align: center;
    }

    .allText {
        margin-top: 40px;
    }

    .allText.aboveText {
        margin: 40px 0 0 0;
    }

    .responsive-container-block.Container {
        margin: 80px auto 50px auto;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 50px auto 50px auto;
    }

    .allText.bottomText {
        margin: 40px 0 0 0;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.Container {
        padding: 10px 0;
        width: 100%;
        max-width: 100%;
    }

    .mainImg {
        width: 100%;
    }

    .responsive-container-block.bigContainer {
        padding: 10px 25px;
    }

    .text-blk.subHeadingText {
        font-size: 18px;
        padding: 0;
    }

    .text-blk.description {
        font-size: 16px;
        padding: 0;
    }

    .allText {
        padding: 0;
        width: 100%;
    }
}
/* End Sobre nós section */

/* Banner section */
.banner-section{
    background-color: wheat;
}

.columns {
    column-count: 3;
    column-gap: 30px;
    column-rule: 2px solid var(--brand);
    width: 100%;
    margin: 0 auto;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Adiciona sombra moderna */
}

.columns h4 {
    color: #000000cb;
    text-align: center;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.columns p {
    color: #000000cb;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
}

.columns h4 .icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}


@media screen and (max-width: 992px) {
    .container.columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .banner-section {
        padding: 0px 0;
        margin-top: 0px;
    }
    
    .columns {
        column-count: 1;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .columns > * {
        break-inside: avoid;
        margin-bottom: 20px;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .columns > *:hover {
        transform: translateY(-5px);
    }

    .container.columns div {
        padding: 25px;
    }

    .container.columns h4 {
        font-size: 0.9rem;
    }

    .container.columns p {
        font-size: 0.9rem;
        text-align: center;
        margin: 0 auto;
        margin-left: -12px;
    }

    .container.columns .icon {
        width: 20px;
        height: 20px;
    }
}


/* End Banner section */

/* Services section */

.serv-section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    color: rgb(51, 51, 51);
    padding: 0 10px;
    margin: 70px 0 50px 0;
    position: relative;
}

.serv-section p {
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    color: rgb(102, 102, 102);
    margin: 0px 0 30px 0;
    padding: 0 10px;
}

@media screen and (max-width: 1024px) {
    .serv-section p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .serv-section p {
        text-align: center;
        font-size: 18px;
        line-height: 32px;
        color: rgb(102, 102, 102);
        margin: 0px 0 30px 0;
        padding: 0 10px;
    }   
}

/* Linha abaixo Quem Somos */
.serv-section > h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, var(--brand), var(--dark));
    position: absolute;
    bottom: -10px;
    left: 50%; 
    transform: translateX(-50%);
}

/* Cards */
.container-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 600px;
    max-width: 100%;
    margin: 10px 0 50px 0;
    padding: 20px 0;
}

.container-cards .card {
    position: relative;
    width: 340px;
    height: 550px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
        inset -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 15px;
    transition: 0.5s;
}

.container-cards .card:nth-child(1) .box .content a {
    background: #2196f3;
    margin-top: 27px;
}

.container-cards .card:nth-child(2) .box .content a {
    background: #23c186;
    /* margin-top: 30px; */
}

.container-cards .card:nth-child(3) .box .content a {
    background: purple;
    /* margin-top: 50px; */
}

.container-cards .card:nth-child(4) .box .content a {
    background: #c16a23;
    margin-top: 135px;
}

.container-cards .card:nth-child(5) .box .content a {
    background: #020202;
    margin-top: 60px;
}

.container-cards .card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #2a2b2f;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.container-cards .card .box:hover {
    transform: translateY(-50px);
}

.container-cards .card .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.container-cards .card .box .content {
    padding: 10px;
    text-align: center;
}

/* Alinhamento do texto Eixo */
.container-cards .card .box .content h2 {
    position: absolute;
    top: -60px;
    right: 13px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.1);
}
/* End Alinhamento do texto Eixo */

.container-cards .card .box .content h3 {
    font-size: 20px;
    color: #fff;
    z-index: 1;
    transition: 0.5s;
    margin-top: 25px;
    margin-bottom: 20px;
}

.container-cards .card .box .content p {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    transition: 0.5s;
}

.container-cards .card .box .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: black;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    transition: 0.5s;
}

.container-cards .card .box .content a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    background: #fff;
    color: #000;
}
/* End Cards */
/* End Services section */

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    margin-top: 30px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2.6em;
    margin-bottom: 20px;
    color: var(--brand);
}

.contact-desc {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f3f3f3;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.info-item i {
    font-size: 24px;
    color: var(--brand);
    margin-right: 15px;
    padding-top: 5px;
}

.info-content h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--brand);
}

.info-content p {
    color: #f3f3f3;
    font-size: 1.2em;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2a2a2a;
    color: #fff;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #f3f3f3;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand);
    outline: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 14px;
    background: #2a2a2a;
    padding: 0 5px;
    color: var(--brand);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #fd9103;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form {
        padding: 30px;
    }
}
/* End Contact Section */

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: 60px 0 0 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    padding: 0 15px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--brand);
    transform: translateY(-3px);
}

.footer-section h3 {
    color: var(--brand);
    font-size: 1.3em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--brand);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #f3f3f3;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-section ul li a i {
    margin-right: 8px;
    color: var(--brand);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--brand);
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--brand);
    font-size: 20px;
}

.contact-item p {
    color: #f3f3f3;
    font-size: 0.95em;
}

.footer-section.about p {
    color: #f3f3f3;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* .footer-map {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
} */

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #f3f3f3;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--brand);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #fd9103;
}

.footer-bottom a:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section.about {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section.about {
        grid-column: span 1;
    }
    
    .contact-item {
        justify-content: center;
    }
}
/* End Footer */

/* Mobile Menu Button */
.menu-btn {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 1001;
}

.menu-btn__burger {
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all .3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

.menu-btn__burger::before {
    top: -8px;
    left: 0;
}

.menu-btn__burger::after {
    top: 8px;
    left: 0;
}

/* Animation for menu button */
.menu-btn.open .menu-btn__burger {
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--brand);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--brand);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    .carousel .list .item .des {
        display: none;
    }

    .carousel .list .item .buttons button:nth-child(2) {
        display: none;
    }

    .menu-btn {
        display: block;
        margin-right: 0;
        order: 3;
    }

    header .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
        /* padding: 10px 0; */
    }

    header .navbar.active {
        left: 0;
    }

    header .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
        margin: 0;
    }

    header .navbar ul li {
        float: none;
        width: 100%;
        text-align: center;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header .navbar ul li:last-child {
        border-bottom: none;
    }

    header .navbar ul li a {
        padding: 15px;
        font-size: 16px;
        display: block;
        color: #fff;
    }

    header .navbar ul .submenu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        display: none;
        padding: 0;
        border-radius: 0;
    }

    header .navbar ul li:hover > .submenu {
        display: none;
    }

    header .navbar ul .submenu.active {
        display: block;
        background: rgba(51, 51, 51, 0.5);
    }

    header .navbar ul .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    header .navbar ul .submenu li:last-child {
        border-bottom: none;
    }

    header .navbar ul .submenu li a {
        padding: 12px;
        color: #fff;
        font-size: 14px;
    }

    .social-icons {
        margin-right: 15px;
        order: 2;
    }

    header .logo {
        order: 1;
    }

    header .logo img {
        max-height: 35px;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(2px);

    }
}
