*{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.6;
}

.limelight-regular {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
}


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

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.5s ease, padding 0.5s ease;
    padding: 25px 0;
}

#main-nav.scrolled {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-contact {
    text-decoration: none;
    font-size: 1em;
    color: #807f8b;
    font-weight: bold;
    cursor:pointer;
    display: flex;
    gap: 5px;
    
    
}

.nav-contact img{
    width: 20px;
    height: 20px;
    
}

.img-logo {
    height: 90px;
    cursor: pointer;
}

.nav-barra {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: #767d8d;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #1a5f8d;
}

.btn-read-more {
    background-color: #1a5f8d;
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #0056b3;
}

.hero-section {
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.295)), url('../img/fundo.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #315380;
    text-align: center;
    padding-top: 100px; 
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Limelight", sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.about-us-section {
    padding: 80px 0;
    background: url('../img/fundogeral.png') no-repeat center center/cover;
    background-attachment: fixed
}

.container-flex {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-us-text-col, .about-us-img-col {
    flex: 1;
}

.about-us-text-col h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0;
    font-family: "Limelight", sans-serif;
}

.about-us-text-col p {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: justify;
}

.about-us-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.container-about {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}



.about-title, .services-title, .portfolio-title, .gallery-title, .mvv-title, .about-us-text-col h2{
    font-size: 2em;
    font-weight: bold;
    margin-top: 0; 
    margin-bottom: 40px;
    font-family: "Limelight", sans-serif;
    color: #1a5f8d;
  
    
}

.about-title {
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Limelight", sans-serif;
    
}

.about-description {
    font-size: 1.1rem;
    color: #767d8d;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.container-services {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
    padding-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}


.service-icon-wrapper {
    min-width: 60px;
    height: 60px;
    background-color: #767d8d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.service-icon-wrapper img{
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    display: block;
}

.service-item:hover .service-icon-wrapper {
    background-color: #899bd1;
}

.service-icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
    color: #767d8d;
}

.service-text p {
    font-size: 0.9rem;
    margin: 0;
    color: #6c757d;
}

.portfolio-section {
    padding: 80px 0;
    text-align: center;
    background: url('../img/fundogeral.png') no-repeat center center/cover;
    background-attachment: fixed;
 
 }

.portfolio-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 40px;
}

.portfolio-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portfolio-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    background-color: #767d8d; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.portfolio-text {
    padding: 20px;
    text-align: left;
}

.portfolio-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    color: #767d8d;
}

.portfolio-text p {
    font-size: 1rem;
    color: #767d8d;
}

.gallery-section {
    padding: 80px 0;
    text-align: center;
    background-size: contain; 
    background-repeat: no-repeat; 
}


.gallery-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-more-btn-container {
    margin-top: 40px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2001;
}

.lightbox-close {
    top: 15px;
    right: 35px;
}

.lightbox-prev, .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #bbb;
}

.lightbox-thumbnails-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #ffffff;
}

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

.animate-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-down {
    transform: translateY(-20px);
}

.fade-in-down.is-visible {
    transform: translateY(0);
}

.fade-in-up {
    transform: translateY(20px);
}

.fade-in-up.is-visible {
    transform: translateY(0);
}

.fade-in-zoom {
    transform: scale(0.9);
}

.fade-in-zoom.is-visible {
    transform: scale(1);
}

.main-footer{
    background-color: #fff;
    color: #788093;
    padding-top: 60px;
    font-size: 0.9em;
   
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 20px;
   
    
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 300px; 
    padding: 0 10px; 
    
}

.footer-left .footer-logo img {
    height: 100px; 
    width: auto;
    margin-bottom: 15px;
}

.footer-left p {
    line-height: 1.8em;
    font-size: 1em;
}

.footer-center h3,
.footer-right h3 {
    color:#195e95; 
    font-size: 1.2em; 
    margin-bottom: 20px;
    font-weight: 600; 
}

.footer-center p,
.footer-right p {
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-right p{ 
    color: #666; 
}

.footer-right .icons{
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-right .icons img{
    height: 25px;
}

#icon-google{
    height: 30px;
}


.footer-bottom { 
    background-color: #fff; 
    padding: 15px 0; 
    font-size: 0.85em;
    color: #788093; 
    text-align: center; 
    border-top: 1px solid #eee; 
}

.footer-bottom p {
    margin: 0;
}

#rpv{
    color: #788093;
    text-decoration: none;
}

.about-us-section-page {
    padding: 80px 0;
    background-image: url("../img/fundogeral.png");
    background-attachment: fixed;
 
}

.container-flex-about {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-us-text-col, .about-us-img-col {
    flex: 1;
}

.about-us-text-col h2 {
    font-weight: bold;
    margin-top: 0;
}

.about-us-text-col p {
    font-size: 1.1rem;
    color: #6c757d;
}

.about-us-image {
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mvv-section {
    padding: 80px 0;
    text-align: center;
    padding-top: 80px;
    
}

.mvv-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mvv-card {
    background-color: transparent;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.mvv-card:hover {
    transform: translateY(-5px);
    
}

.mvv-icon-wrapper {
    height: 80px;
    width: 80px;
    background-color: #4b5b88;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    flex-shrink: 0; 

}

.mvv-icon-wrapper img {
    width: 55%;
    height: auto;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #343a40;
}

.mvv-card p {
    font-size: 1rem;
    color: #6c757d;
}


.page-header {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/fundogeral.png");
    padding: 80px 0;
}

.page-header h1 {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    color: #1a5f8d;
    font-family: "Limelight", sans-serif;
    padding-top: 90px;
}


.portfolio-project-section {
    padding: 80px 0;
    background-attachment: fixed;
    
}


.portfolio-project-section h2{
    font-family: "Limelight", sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

.container-project {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.project-right{
    background-color: #f8f9fa;

}
.project-left .container-project {
    flex-direction: row;
    
}

.project-left{
    background-image: url("../img/fundogeral.png");
    background-attachment: fixed;

}


.project-image, .project-text {
    flex: 1;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.project-text h2 {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a5f8d;
}

.project-text p {
    font-size: 1.1rem;
    color: #6c757d;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #807f8b;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu::before,
.hamburger-menu::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: #807f8b;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu::before {
    top: -8px;
}

.hamburger-menu::after {
    top: 8px;
}

.nav-toggle.active .hamburger-menu {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger-menu::before {
    top: 0;
    opacity: 0;
}

.nav-toggle.active .hamburger-menu::after {
    top: 0;
    transform: rotate(-90deg);
}

.gallery-section-page{
    padding: 100px 0;
    text-align: center;
    background-image: url("../img/fundogeral.png");
    background-repeat: no-repeat;
    background-size: cover;
    
}

.gallery-item.hidden {
    display: none;
}


#load-more-btn{
    background-color: #1a5f8d;
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

#load-more-btn:hover{
    background-color: #0056b3;
}

.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    z-index: 1000; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}

.whatsapp-float img.whatsapp-icon {
    width: 100px; 
    height: 100px; 
    vertical-align: middle; 
    border: none; 
    margin-top: 2px; 
}

.whatsapp-float:hover {
    background-color: #075E54; 
    transform: scale(1.05); 
    transition: all 0.3s ease; 
}

.whatsapp-badge {
    position: absolute; 
    top: -10px; 
    right: 70px; 
    background-color: #075E54; 
    color: #FFF; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 14px; 
    white-space: nowrap; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateX(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; 
}

.whatsapp-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54; 
    transform: translateY(-50%);
}


.whatsapp-float:hover .whatsapp-badge {
    opacity: 1; 
    visibility: visible; 
    transform: translateX(0); 
}

.contato{
    padding: 80px 0;
}

.contact-form {
    min-width: 400px;
    padding: 100px;
    border-radius: 8px;
    gap: 20px;
    line-height: 1.6em;
    
    
}

.contact-form-inf{
    background-image: linear-gradient(rgb(255, 255, 255) , rgba(50, 50, 51, 0.349)), url("../img/galeria/fundo-contato.jpg");
    background-size: cover;
    padding: 80px 0;
    align-items: center;
   
}
.contact{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    
    
}

.contact-form h2 {
    font-size: 2.5em;
    color:#195e95;
    text-align: center;
    font-family: "Limelight", sans-serif;
    
}

.contact-form p{
    text-align: center;
    font-size: 1.5em;
    color:#ffffff;
}

.services-page-section{
    padding: 80px 0;
    text-align: center;
    background-image: url('../img/fundogeral.png')
}

.container-service-page{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-page-title{
    padding-top: 50px;
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 0; 
    margin-bottom: 40px;
    font-family: "Limelight", sans-serif;
    color: #1a5f8d;
}

.page-header h1{
    font-size: 2.5em;
}


#service-detail-section {
    background-color: #f8f9fa; 
}

.service-detail-item {
    padding: 80px 0;
    color: #6c757d;
}

.service-detail-item:nth-child(odd) {
    background-color: #f8f9fa; 
}

.service-detail-item:nth-child(even) {
    background-image: url("../img/fundogeral.png");
    background-attachment: fixed;
  
}


.service-detail-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}


.service-detail-item-even .service-detail-container {
    flex-direction: row-reverse;
}

.service-detail-img-col {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-detail-text-col {
    flex: 1;
    max-width: 50%;
    line-height: 1.8;
}

.service-detail-image {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-text-col h2 {
    font-family: "Limelight", sans-serif;
    font-size: 2.2em;
    font-weight: bold;
    color: #1a5f8d;
    margin-bottom: 20px;
}

.service-detail-text-col p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* .service-detail-btn {
    display: inline-block;
    background-color: #1a5f8d;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.service-detail-btn:hover {
    background-color: #0056b3;
} */


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


.secao-conteudo {
    padding: 20px 0;
    text-align: justify;
}


.secao-imagem-texto {
    display: flex;
    gap: 40px; 
    align-items: flex-start; 
    padding: 40px 0;
}

.bloco-imagem {
    flex: 1;
    padding-top: 100px; 
    
}

#service2{
  padding-top: 60px; 
}

#service5{
    width: 500px;
    height: 650px;
    border-radius: 10px;
}

.bloco-imagem img {
    width: 500px;
    height: 550px;
    border-radius: 10px;
    
}

.bloco-texto {
    flex: 2; 
}


h1 {
    font-family: "Limelight", sans-serif;
    font-size: 2.5em;
    text-align: left;
    color: #1a5f8d;
    padding-top: 60px;
}

h3 {
    font-family: "Limelight", sans-serif;
    color: #1a5f8d;
    font-size: 2em;
}

.secao-conteudo p,
.secao-conteudo ul,
.bloco-texto p,
.bloco-texto ul {
    font-family: 'Open Sans', sans-serif;
    color: #6c757d;
    font-size: 1.1em;
    line-height: 1.6;
}

.topicos {
    list-style-type: circle;
    padding-left: 25px;
    margin-bottom: 20px;
}

.topicos h4 {
    font-size: 1.2em;
    color: #1a5f8d;
    margin-top: 20px;
}

.topicos li {
    margin-bottom: 10px;
}


/* Responsividade  */
@media (max-width: 900px) {
    .secao-imagem-texto {
        flex-direction: column; 
        align-items: center;
    }
    
    .bloco-imagem, .bloco-texto {
        flex: auto; 
        width: 100%;
    }

    .service-detail-container {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
    }
    
    .service-detail-img-col, .service-detail-text-col {
        flex: unset;
        max-width: 100%; 
    }


    .service-detail-item-even .service-detail-container {
        flex-direction: column;
    }

    .service-detail-text-col h2 {
        font-size: 1.8em;
    }
    
    .service-detail-text-col p {
        text-align: justify; 
    }

    .service-detail-btn {
        width: 100%; 
    }

   .container-nav {
        flex-direction: row; 
        padding: 0 10px;
    }

    .nav-barra {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 80px; 
        left: 0;
        text-align: center;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-barra.active {
        display: flex; 
    }
    .nav-menu {
        flex-direction: column; 
        width: 100%;
    }

    .nav-item {
        margin: 15px 0; 
    }
    
    .img-logo {
        height: 60px; 
    }

    .nav-link, .nav-contact {
        font-size: 1.2em; 
    }

    .nav-toggle {
        display: block; 
    }
    
    .nav-contact {
        display: none; 
    }

 
    .hero-title {
        font-size: 2.5rem; 
    }
    .hero-subtitle {
        font-size: 1.2rem; 
    }

    
    .container-flex, .container-project {
        flex-direction: column; 
        text-align: center;
        margin: 20px;
    }
    
    .project-left .container-project, .project-right .container-project {
        flex-direction: column;
    }

    .project-text, .about-us-text-col {
        order: 2; 
    }

    .project-image, .about-us-img-col {
        order: 1;
        margin-bottom: 20px;
    }

    
    .about-us-text-col h2, .services-title, .portfolio-title, .gallery-title, .mvv-title, .project-text h2 {
        font-size: 1.8em; 
    }
    
 
    .services-grid {
        text-align: center; 
    }
    
    .service-item {
        flex-direction: column; 
        align-items: center; 
    }
    
    
    .portfolio-grid {
        flex-direction: column; 
        align-items: center;
    }
    
    .portfolio-card {
        max-width: 90%; 
    }

   
    .whatsapp-float {
        width: 50px; 
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img.whatsapp-icon {
        width: 80px; 
        height: 80px; 
    }
    
    .whatsapp-badge {
        right: 60px; 
        font-size: 12px;
    }

   
    .footer-content {
        flex-direction: column; 
        padding-left: 20px; 
        text-align: center;
    }

    .footer-left p {
        text-align: center;
    }
    
    .footer-right .icons {
        justify-content: center; 
    }
    
   
    .contact-form {
        min-width: unset; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-form p {
        font-size: 1em; 
        
    }
    
    .contact-form h2 {
        font-size: 2em;
    }
    
    .lightbox-prev, .lightbox-next {
        font-size: 30px; 
        padding: 5px;
        top: 40%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-thumbnails-container {
        display: none; 
    }

    .container-flex-about{
        align-items: center;
        flex-direction: column;

    }
}

