@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;
    --body2: #ffffff;
    --text: #333;
    --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-decoration: none;
}

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

header {
    position: sticky;
    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;
    transition: background 0.5s ease;
    /* Smooth transition for background */
    font-size: 18px;
}

/* Add styles for when the header is scrolled */
/* 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: 18px;
    color: var(--brand);
    /* Using brand color, you can change this to any color you want */
    padding: 20px;
    display: block;
    font-weight: 500;
    /* Adding font weight for better visibility */
    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;
}



/* 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;
}

.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: 40px;
        height: 40px;
    }
    
    .nav-btn i {
        font-size: 22px;
    }
    
    .nav-btn-left {
        left: 10px;
    }
    
    .nav-btn-right {
        right: 10px;
    }
}

/* End modern dropdown menu */

/* Banner S-section */
.bannerS-section{
    background-color: var(--body2);
    background: linear-gradient(to bottom, #fd91035d, #fd910309);
}

.bannerS {
    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);
}

.bannerS h4 {
    color: #666;
    text-align: center; 
    font-size: 18px;
    width: 100%;
    margin: 0; 
    padding: 0;
}

.bannerS p {
    color: #333;
    text-align: center;
    padding: 5px;
    font-size: 30px;
    font-weight: 700;
}

.bannerS h4 .icon {
    margin-right: 10px;
    width: 34px;
    height: 34px;
}
/* End Banner S-section */

/* Services section */

/* Container for the columns */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

/* Left column for images */
.left-column {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

/* Wrapper for images to handle positioning */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Aspect ratio 4:3 */
    overflow: hidden;
}

/* Style for the images */
.image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 10%;
}

.image1 {
    z-index: 1;
    /* transform: translate(10%, 10%); */
    opacity: 0.9;
}

.image2 {
    z-index: 2;
    /* transform: translate(-10%, -10%); */
    opacity: 0.8;
}

.image-wrapper:hover .image {
    transform: scale(1.05);
    opacity: 1;
}

/* Right column for text */
.right-column {
    flex: 1;
    padding: 20px;
}

.right-column h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.right-column p {
    font-size: 16px;
    line-height: 1.5;
}

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

.serv-section h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 350px;
    background: linear-gradient(to bottom, #fd91035d, #fd910309);
    position: absolute;
    top: 80px;
    left: 10px;
    padding-right: 50px;
    transform: translateX(-50%);
}

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


/* eixos-container*/ 	


.eixo {
	background-color: var(--body);
	border-radius: 10px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	display: flex;
	max-width: 100%;
	margin: 40px auto;
	overflow: hidden;
	width: 1555px;
}

.eixo h6 {
    font-size: 14px;
    font-weight: 300;
	opacity: 0.6;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.eixo h2 {
    font-size: 20px;
    font-weight: 500;
	letter-spacing: 1px;
	margin: 10px 0;
}

.eixo h3 {
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
	letter-spacing: 1px;
	margin: 10px 0;
}

.eixo p {
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
	letter-spacing: 1px;
	margin: 10px 0;
}

/* Ajustes dos Eixos */
.eixo-preview {
	background-color: #2A265F;
	color: #fff;
	padding: 30px;
	max-width: 350px;
    min-width: 350px;
}

.eixoB-preview {
	background-color: green;
	color: #fff;
	padding: 30px;
	max-width: 350px;
    min-width: 350px;
}

.eixoC-preview {
	background-color: purple;
	color: #fff;
	padding: 30px;
	max-width: 350px;
    min-width: 350px;
}

.eixoD-preview {
	background-color: var(--brand);
	color: #fff;
	padding: 30px;
	max-width: 350px;
    min-width: 350px;
}
/* End Ajustes dos Eixos */

.eixo-preview a {
	color: #fff;
	display: inline-block;
	font-size: 12px;
	opacity: 0.6;
	margin-top: 30px;
	text-decoration: none;
}

.eixo-info {
	padding: 30px;
	position: relative;
	width: 100%;
}

.progress-container {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: right;
    width: 150px;
}

.progress {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    height: 5px;
    width: 100%;
    position: relative;
}

.progress::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 3px;
    width: calc((var(--current-step) / var(--total-steps)) * 100%);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #333;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Progress bars for different eixos */
.eixoA-section .progress::before {
    background-color: #2A265F;
}

.eixoB-section .progress::before {
    background-color: green;
}

.eixoC-section .progress::before {
    background-color: purple;
}

.eixoD-section .progress::before {
    background-color: var(--brand);
}

/* Imagem */

.serv-section.rent {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 100px 0 20px 0;
}

.rent h2 {
    margin-top: -50px;
}

.rent h2::before {
    /* content: none;  */
    margin-left: 330px;
    margin-top: -55px;
}

.serv-section.rent p {
    width: 70%;
}

.image-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
}

.illustrative-image {
    width: 90%;
    height: auto;
    margin: 15px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.illustrative-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.rentB {
    padding: 40px;
}

.rentB img  {
    display: block;
    margin: auto;
}
/* End Services section */

/* 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: 20px 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 {
        display: none; /* Submenu oculto por padrão */
        position: static;
        width: 100%;
        background: rgba(51, 51, 51, 0.5);
        padding: 0;
        border-radius: 0;
    }
    
     
    /*header .navbar ul .submenu.active {
        display: block; /* Submenu aparece quando a classe 'active' é adicionada 
    */


    header .navbar ul li:hover > .submenu {
        display: none; /* Desabilita hover para submenu em telas pequenas */
    }

    header .navbar ul .submenu.active {
        display: none; /* Submenu oculto */
        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);

    }
}

/* Responsiveness for smaller screens */
@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .left-column, .right-column {
        flex: none;
        width: 100%;
        padding: 10px;
    }


    .eixoB-preview, .eixoC-preview, .eixoD-preview {
        max-width: 100%;
        color: #fff;
        padding: 20px;
        border-radius: 10px;
    }

    .image-wrapper {
        padding-bottom: 70%; /* Aspect ratio 16:9 */
    }

    .eixoA-section .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .eixoA-section .image {
        transform: none;
        opacity: 1;
    }

    .eixoA-section .image-wrapper:hover .image {
        transform: none;
        opacity: 1;
    }

    .serv-section h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .serv-section p {
        font-size: 16px;
        padding: 0 10px;
    }

    .eixo {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }

    .eixo-preview, .eixo-info {
        max-width: 100%;
        min-width: unset;
        padding: 20px;
        border-radius: 10px;
    }

    .progress-container {
        position: static;
        margin-top: 10px;
        width: 100%;
    }

    .eixoA-section .image-wrapper:hover .image {
        transform: none;
        opacity: 1;
    }


    /* Estilo das imagens */

    .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0; /* Remove aspect ratio */
        height: 400px;
        width: auto; /* Ajusta a altura automaticamente */
    }

    .image {
        position: static; /* Remove posicionamento absoluto */
        width: auto; /* Ajusta a largura automaticamente */
        height: auto; /* Ajusta a altura automaticamente */
        transform: none; /* Remove transformações */
        opacity: 1; /* Remove opacidade */
        border-radius: 0; /* Remove bordas arredondadas */
    }

    .image2 {
        display: none;
    }

    .image-wrapper:hover .image {
        transform: none; /* Remove efeito de hover */
        opacity: 1; /* Remove efeito de hover */
    }

    .left-column, .right-column {
        flex: none;
        width: 100%;
        padding: 20px;
    }

/* Estilo das imagens */

@media screen and (max-width: 768px) {
    .bannerS {
        padding: 20px;
    }
}

    .bannerS h4 {
        font-size: 16px;
    }

    .bannerS p {
        font-size: 24px;
    }

    .social-icons a {
        width: 24px;
        height: 24px;
        margin: 2px;
    }


    .left-column, .right-column {
        flex: none;
        width: 100%;
        padding: 20px;
    }


    .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0; /* Remove aspect ratio */
        height: 390px; /* Ajusta a altura automaticamente */
    }

    .image {
        position: static; /* Remove posicionamento absoluto */
        width: auto; /* Ajusta a largura automaticamente */
        height: 350px; /* Ajusta a altura automaticamente */
        transform: none; /* Remove transformações */
        opacity: 1; /* Remove opacidade */
        border-radius: 0; /* Remove bordas arredondadas */
    }

    .image2 {
        display: none;
    }

    .image-wrapper:hover .image {
        transform: none; /* Remove efeito de hover */
        opacity: 1; /* Remove efeito de hover */
    }

    .illustrative-image {
        width: 100%;
        margin: 10px 0;
    }

    .rent h2 {
        font-size: 20px;
    }

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

@media screen and (max-width: 480px) {
    header {
        font-size: 16px;
        padding: 10px;
    }

    header .logo {
        font-size: 20px;
    }

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

    header .navbar ul li a {
        font-size: 14px;
        padding: 10px;
    }

    .nav-btn {
        width: 25px;
        height: 25px;
    }

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

    .eixo h2, .eixo h3, .eixo p {
        font-size: 14px;
    }

    .progress-text {
        font-size: 10px;
    }
}

.rentB img {
    display: block;
    margin: auto;
    height: 20rem;
}

@media screen and (max-width: 1024px) {
    .serv-section.rent h2 {
        font-size: 24px; 
        font-weight: 700; 
        line-height: 28px; 
        text-align: center; 
        margin-bottom: 15px; 
    }

    .serv-section.rent p {
        font-size: 16px; 
        line-height: 24px; 
        text-align: justify; 
        margin: 0 10px; 
    }

    .image-container {
        width: 30%; 
        padding: 10px; 
    }

    .illustrative-image {
        width: 100%; 
        margin: 10px 0; 
    }

    .rent h2::before{
        display: flex;
        margin-left: 160px;
    }
}

/* 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 */