*{
    margin: 0;
    padding: 0;
    /* font-family: "Mark" , sans-serif; */
    font-family: "Gotham Office";
    box-sizing: border-box;
}

@font-face {
    font-family: "Gotham Office";
    src: url('resources/font/GothamOffice-Regular.eot') format('eot'),
         url('resources/font/GothamOffice-Regular.woff') format('woff'),
         url('resources/font/GothamOffice-Bold.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

html{
    scroll-behavior: smooth;
}
body{
    background: #f7f7f7;
    color: #fff;
   
}

#header{
    width: 100%;
    height: 500px;  
    /* background-size:cover;
    background-position:center;
    background-repeat: no-repeat; */
    overflow: hidden;
    position: relative;
}

.slideshow {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    animation: slide 25s infinite;
}

.slideshow img {
    width: 20%;
    height: 100%;
    object-fit: cover; 
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(0);
    }
    30% {
        transform: translateX(-20%);
    }
    40% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(-40%);
    }
    60% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-60%);
    }
    80% {
        transform: translateX(-60%);
    }
    90% {
        transform: translateX(-80%); /* Move to the last image */
    }
    95% {
        transform: translateX(-80%); /* Move to the last image */
    }
    100% {
        transform: translateX(0); /* Quickly transition back to the first image */
    }
}

.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
.logo{
    width: 130px;
    border-radius: 50%;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #456261;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 12%;
    font-size: 30px;
    position: relative;
    top: 120px; /* tava 100px
    /* left: 100px; */
    z-index: 1;
    background-color: rgba(240, 247, 246, 0.7);
    padding: 10px 20px; 
    border-radius: 8px;
    display: inline-block;
    transform: translate(-50%, -50%);
}
.header-text p{
    font-size: 30px;
    margin-top: 20px;
    margin-left: 400px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
    margin-left: 400px;
    display: flex;
    align-items: center;
    gap: 10px;

    /* -webkit-text-stroke: 1px lightgray; */
}
.headerImg {
    width: 150px;
    height: auto;
    vertical-align: middle;
}

.header-text h1 span{
    color: #456261;
    opacity: 0; 
    display: inline-block; 
    animation: fadeInLetter 1s forwards;
    animation-delay: calc(var(--i) * 0.1s); 
    font-size: 40px;
    font-weight: lighter;
}

@keyframes fadeInLetter {
    0% { opacity: 0; transform: translateY(10px); } 
    100% { opacity: 1; transform: translateY(0); } 
}


/* areas ------------------- */
#areas{
    /* padding: 80px 0; */
    color: #ababab;
    background-color: gray;
}
#areas #col-1 {
    display: flex;
    justify-content: space-evenly;
}


/*--------------------------services---------- */
#services{
    padding: 30px 0;
    /* background-image: url("resources/servicesWallpaper.jpg") */
    background-color: #f0f7f6;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px ;
    transition: background 0.5s, transform 0.5s;
}
.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}
.services-list div:hover{
    background: #ff004f;
    transform: translateY(-10px);
}
.row-services {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 20px;
}

.col-left, .col-right {
    width: 50%;
    margin: 10px;
}

.row-services .sub-title {
    font-size: 2em; 
    margin-bottom: 10px;
    color: #456261;
}

.row-services .servicesTxt {
    font-size: 1.4em; 
    line-height: 1.6; 
    margin-bottom: 20px;
    color: #262626;
    font-weight: lighter;
    text-align: justify
}

.col-left {
    margin-right: 20px;
}

.services-img {
    max-width: 500px;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.services-img:hover {
    transform: scale(1.05); 
}
/*----------------------------portfolio---------*/
#portfolio{
    padding: 10px 0;
    background-repeat: no-repeat;
    background-color: #456261;
}

.logoForm{
    width: 100%;  
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6),#ff004f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}
.layer h2{
    font-weight: 500;
    margin-bottom: 20px;
}
.layer a{
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #054b3f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
/* .btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}
.btn:hover {
    background: #ff004f;
} */

.row-Form {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.col-left, .col-right {
    flex: 1;
    margin: 10px;
}
.col-left {
    margin-right: 20px;
}
.col-right form {
    display: flex;
    flex-direction: column;
}
.col-right form label {
    margin-top: 10px;
}
.col-right form input, .col-right form textarea {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: #f0f7f6;
    color: #45474B
}
/* .col-right form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
.col-right form input[type="submit"]:hover {
    background-color: #45a049;
} */
.col-right form button {
    /* margin-top: 20px;
    padding: 10px 20px; */
    background-color: white;
    color: black;
    border: 2px solid #E6BF83;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 6px;
    display: block;
    margin: 50px auto;
    width: fit-content;
    /* border: 1px solid #ff004f; */
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
}

.col-right form button:hover {
    transform: scale(1.05);
}

#portfolio p {
    font-size: 1.2em; 
    line-height: 1.6; 
    font-weight: lighter;
    text-align: justify;
    width: 80%;
}
/*--------------------------------contact---------------------*/

.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px);
}
/* .btn.btn2{
    display: inline-block;
    background: #ff004f;
} */
.contact-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}
form btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    font-weight: 100; 
}
/*--------------------------------footer---------------------*/
 
.footer {
    position: relative;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("resources/footer2.jpg");
    background-position: center ;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.8) saturate(0.7); 
    z-index: -1; 
}

.footer-content {
    position: relative;
    z-index: 2; 
}
.footer .row {
    display: flex;
    justify-content: space-evenly;
}
.collab{
    text-align: right;
  }
  .collab p{
    font-weight: lighter !important;
    margin-bottom: 20px;
  }
  .hr{
    background: #E6BF83;
    height: 2px;
  }
  .info h4{
    font-size: 18px;
    font-weight: lighter;
  }
  .info #linkedin{
    text-decoration: none;
    color:#fff;
  }
  .info #redes{
    text-decoration: none;
    color:#fff;
  }
  .info p{
    color: lightgray;
    font-weight: lighter;
  }
  .info li{
    font-weight: lighter;
    color: #fff;
    font-size: 18px;
    padding-left: 20px;
  }
  #bt::before{ 
    display: inline-block;
    content: "";
    border-radius: 100%;
    height: 6px;
    width: 6px;
    margin-right: 6px;
    background: #E6BF83;
    
  }
 
  #bt:hover {
    color: #E6BF83; 
    font-size: 20px;
    transition: transform 0.6s ease;
  }
  #ig::before{ 
    display: inline-block;
    content: "";
    border-radius: 100%;
    height: 6px;
    width: 6px;
    margin-right: 6px;
    background:#e02c53;
  }
  #ig:hover {
    color: #456261; 
    font-size: 18px;
  }
 
  /* #tw::before{ 
    display: inline-block;
    content: "";
    border-radius: 100%;
    height: 4px;
    width: 4px;
    margin-right: 6px;
    background: #55acee;
  } */
  /* #media, #adress{
    text-align: right;
  } */
  #media ul{
    list-style: none;
  }
  #media ul li{
    display: block;
    margin-bottom: 10px;
  }
  @media(max-width: 768px){
    .collab, #personal, #media, #adress{
        text-align: center;
    }
    .info ul{
      margin: 0 0 0 -22;
      padding: 0;
    }
  }
  
/* ----------------------- sobre nós -----------------------------*/
#sobre{
    padding: 30px 0;
    /* background-image: url("resources/servicesWallpaper.jpg") */
    background-color: #f0f7f6;
}

.row-sobre {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    margin-top: 20px;
    justify-content: center;  /* Centers horizontally */
    /* align-items: center;  Centers vertically */
    /* height: 100vh;  Takes full viewport height to center vertically */
    text-align: center; /* Ensures the text is centered */
}
.row-sobre .col-left {
    max-width: 1000px; /* You can adjust this width to your preference */
    margin: 0 auto; /* This centers the content */
    text-align: center; /* Centers the text itself */
}
/* .col-left, .col-right {
    width: 50%;
    margin: 10px;
} */

.row-sobre .sub-title {
    font-size: 2em; 
    margin-bottom: 10px;
    color: #456261;
}

.sobreTxt {
    font-size: 1.4em; 
    line-height: 1.2; 
    margin-bottom: 20px;
    color: #262626;
    font-weight: lighter;
    text-align: justify;
    margin-top: 20px;
}

.col-left {
    margin-right: 20px;
}

/* .services-img {
    max-width: 500px;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.services-img:hover {
    transform: scale(1.05); 
} */

/* ------------------------------- serviços ---------------------- */
#servicos{
    padding: 20px 10%;
    background-color: #f0f7f6;
}

/* #servicos .container {
    max-width: 100%;
    /* padding: 0; Remove extra padding that might limit width */
    /* padding: 10px 10%;
} */ 

/* .ServContainer {
    max-width: 100%;
    padding: 0;
    margin: 0;
} */

.row-servicos {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    justify-content: center;  
    /* text-align: center;  */
    /* align-items: center; */
} 

.row-servicos h1 {
    color: #456261
}
.col-leftServ {
    text-align: center;
    margin-bottom: 40px; 
}

.servicos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 boxes per row */
    gap: 30px; /* Space between boxes */
    justify-items: center; /* Center the boxes in the row */
    width: 100%;
    max-width: 1200px; /* Set a max width for the container */
    margin: 0 auto; /* Center the container with small margin on sides */
    padding: 0 20px; /* Add padding on the left and right */
    
}
.servicos-box {
    background-color: rgba(0, 128, 128, 0.1); /* Light teal background */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    /* cursor: pointer; */
    text-align: center;
    min-width: 350px; /* Set a min width for the box */
    height: 150px; /* Fix height */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
}


.servicos-box p {
    font-size: 1.2em;
    color: #333;
    margin: 0;
    transition: transform 0.3s ease-in-out;
}

.servicos-box:hover {
    transform: scale(1.05); /* Zoom in the box */
}

.servicos-box:hover p {
    transform: scale(1.05); /* Zoom in the text */
}

/* ---------------------- equipa -----------------------*/
#equipa {
    padding: 30px 0;
    background-color: #f0f7f6;
}

.row-equipa {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    text-align: center;
}

.row-equipa h1 {
    font-size: 2em;
    color: #456261;
    margin-bottom: 40px;
}

/* Team container: flexbox for side-by-side images */
.team-container {
    display: flex;
    gap: 60px; /* Space between team members */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.team-member {
    position: relative;
    width: 500px; /* Set a fixed width for the team member */
    height: 600px; /* Set a fixed height */
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the box */
    border-radius: 10px; /* Match the border radius */
}

.team-member:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.hover {
    position: absolute;
    bottom: 0; /* Start from the bottom */
    left: 0;
    width: 100%;
    height: 0%; /* Start at 0% height */
    background: rgba(0, 128, 128, 0.7); /* Light teal hover effect */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden; /* Ensure it doesn't exceed the container */
    transition: height 0.4s ease; /* Smooth growth effect */
}

.team-member:hover .hover {
    height: 20%; /* Grow the overlay to cover half of the image */
}

/* Hover text styling */
.hover-text {
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease; /* Smooth text appearance */
}

.team-member:hover .hover-text {
    opacity: 1; /* Show text when hovered */
}

.hover-text p {
    margin: 5px 0 0;
    font-size: 1em;
}

/* ---------------------- contactos -----------------------*/
#contactos {
    padding: 30px 0;
    background-color: #f0f7f6;
    text-align: center;
}

.row-contactos h1 {
    font-size: 2em;
    color: #456261;
    margin-bottom: 10px;
}

.row-contactos h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
}

/* Icon Section: Flexbox layout for icons */
.icon-section {
    display: flex;
    justify-content: center;
    gap: 60px; /* Space between the icon boxes */
    flex-wrap: wrap; /* Allow icons to wrap if needed */
    margin-bottom: 40px;
}

.icon-box {
    text-align: center;
    padding: 20px;
    width: 250px; /* Fixed width for each icon box */
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-box i {
    font-size: 3em;
    color: #456261;
    margin-bottom: 15px;
}

.icon-box h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

.icon-box:hover {
    transform: scale(1.05);
}

/* Map Section */
.map-section {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.map-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.map-section p {
    margin-bottom: 20px;
    color: #666;
}

/* Google Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.close-menu ,
.footer-mobile{
    display: none; 
}
/*---------------------------- css for small screen-------*/
nav .fa-solid{
    display: none;
}

@media only screen and (max-width: 600px){
html, body {
    overflow-x: hidden;
}

    #header{
        height: 300px;
    }
     .slideshow {
        height: 90%;
        }
        .header-text {
            width: 90%;
            max-width: 380px;
            margin: 12px auto 0 auto;
            padding: 0 10px;
            margin-left: 90px;
            text-align: center;
            box-sizing: border-box;
        }
        .header-text h1 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            /* espaço entre logo e texto */
            flex-wrap: wrap;
            /* permite quebrar a linha se não couber */
            margin: 0;
            line-height: 1;
            font-size: 1rem;
            /* equivalente a ~16px, ajusta se quiseres menor/maior */
        }

        .headerImg {
            max-width: 90px;
            height: auto;
            display: block;
        }

                .header-text h1 span {
                    font-size: 15px;
                    /* ajusta para 13-18px conforme preferires */
                    font-weight: 600;
                    /* mantem destaque mas discreto */
                    white-space: normal;
                    /* permite quebra de linha */
                    display: inline-block;
                    vertical-align: middle;
                    padding: 0;
                }

    #services {
    padding: 0px 0;
    }

 .row-services .servicesTxt {
    font-size: 1.1em; 
    line-height: 1.4;
  }
  .row-services .sub-title {
    font-size: 24px; 
    text-align: center; 
  }

  #portfolio .sub-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
  }

  #portfolio .row-Form {
    display: flex;
    flex-direction: column; /* coloca em coluna */
  }

  #portfolio .row-Form .col-left {
    order: 1; /* primeiro vem o texto */
    font-size: 14px;
    width: auto;
  }

  #portfolio .miniLogo {
    order: 2; /* depois aparece o mini logo */
    margin: 15px auto;
    text-align: center;
  }

  #portfolio .row-Form .col-right {
    order: 3; /* no fim aparece o form */
    margin-top: 20px;
    width: auto;
  }

  #portfolio p {
    font-size: 1.1em; 
    line-height: 1.4;
    width: 100%;
  }

  #portfolio .row-Form .col-right {
    text-align: center;
  }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483647 !important; /* ou 999999 se preferires um número menor */
}

    nav .fa-solid{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: rgba(69, 98, 97, 0.95);
        /* border-left: 2px solid white;
        border-top: 2px solid  white ;
        border-bottom: 2px solid white; */
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        padding-top: 50px;
        z-index: 2147483646 !important;
        transition: right 0.5s ease;
        border-bottom-left-radius: 12px; 
        border-top-left-radius: 12px;
        box-shadow: -2px 0 8px rgba(0,0,0,0.4);
    }
    nav ul li{
        display: block;
        margin: 18px 20px;
    }
    nav ul .fa-solid{
        position: absolute;
        top: 15px;
        left: 15px;
        cursor: pointer;
        font-size: 20px;
        color: white;
        background: none; /* garante que não aparece quadrado */
        border: none;
        box-shadow: none;
    }
    .close-menu {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    font-weight: 300; 
    color: silver;
     z-index: 100001; 
}
    nav ul a {
    /* color: #E6BF83; */
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  nav ul a:hover {
   color: #ffffff;
  }
   nav .fa-bars {
    position: fixed !important;
    top: 20px;
    right: calc(20px + env(safe-area-inset-right));
    z-index: 2147483647 !important;
    background: #456261;;
    color: #E6BF83;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }
 
  #sobre {
    padding: 0px 0;
  }

  #sobre .col-left h1 {
    font-size: 24px; 
    text-align: center; 
  }
  #sobre .col-left h4 {
    font-size: 1.1em; 
    line-height: 1.4;
  }

  #servicos {
    padding: 0px 0;
  }
  #servicos h1{
    font-size: 24px; 
    text-align: center; 
  }
  .servicos-container {
        grid-template-columns: 1fr; /* passa para 1 coluna */
        gap: 12px; /* menos espaço entre caixas */
    }

    .servicos-box {
        width: 100%;       /* ocupa toda a largura */
        min-width: auto;   /* remove o limite mínimo */
        height: auto;      /* altura adapta-se ao conteúdo */
        padding: 12px;     /* menos padding para caber no ecrã */
    }

    .servicos-box p {
        font-size: 0.9em;  /* texto mais pequeno */
        line-height: 1.3;  /* leitura confortável */
    }

    .servicos-box:hover,
    .servicos-box:hover p {
        transform: none !important;
    }
    .servicos-container .servicos-box:last-child {
        margin-bottom: 12px; /* ajusta o valor se quiseres mais espaço */
    }
    #servicos .hr {
        margin-top: 0 !important;
    }

    #equipa {
        padding: 0px 0;
    }
    #equipa h1 {
        font-size: 24px; 
        text-align: center; 
    }

    #contactos {
        padding: 0px 0;
    }
    #contactos h1 {
        font-size: 24px; 
        text-align: center; 
    }
    /* .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size: 14px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    } */

    .footer {
        height: 250px;
    }
    .footer-content {
     justify-content: center; /* centraliza horizontalmente o conteúdo */
        align-items: center; /* centraliza verticalmente */
        gap: 12px; /* espaço entre logo e links */
        display: flex;
    }
    .footer-mobile {
    padding: 10px 10%;  
    position: relative;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}
    .footer {
        display: none; 
    }

    .footer-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("resources/footer2.jpg");
        /* background-position: center; */
        background-repeat: no-repeat;
        background-size: cover;
        filter: brightness(0.6) saturate(0.7); /* escurece e dessatura */
        z-index: -1; /* atrás do conteúdo */
    }

    .footer-mobile .footer-left img {
        max-width: 100px;
        height: auto;
        border-radius: 0%;
    }

    .footer-mobile .footer-right {
        display: flex;
        align-items: center;
        gap: 15px; /* espaçamento entre Instagram e Contacte-nos */
    }

    .footer-mobile a {
        font-weight: 600;
        font-size: 14px;
        color: white;
        text-decoration: none;
    }

    .footer-mobile .hr {
        width: 100%;
        margin: 10px 0;
    }
    .footer-mobile a#contact-link {
        color: #E6BF83;
    }
    #ig::before {
        display: none;
    }
    .close-menu ,
.footer-mobile{
    display: block; 
}

}
#msg{
    color: #61b752;
    margin-top: -40px;
    display: block;
}
