* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    font-family: 'Inter', sans-serif;
    background-color: #4874ff;
    overflow-x: hidden; /* Bloqueia scroll horizontal */
    color: white;
    min-height: 100vh;
    scrollbar-width: thin; /* Define uma barra de rolagem fina em Firefox */
    scrollbar-color: #4874ff #0C142D; /* Thumb e track colors para Firefox */
}

/* Estiliza a scrollbar em navegadores baseados em WebKit */
::-webkit-scrollbar {
    width: 12px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #0C142D; /* Cor de fundo da track da barra de rolagem */
    border-radius: 0px; /* Bordas arredondadas para a track */
}

::-webkit-scrollbar-thumb {
    background: #4874ff; /* Cor da "thumb" da barra de rolagem */
    border-radius: 10px; /* Bordas arredondadas na thumb */
    border: 3px solid #0C142D; /* Espaçamento ao redor da thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #ffe045; /* Cor da thumb ao passar o rato */
}

.section {
    min-height: 100vh; /* Garante que a seção tenha pelo menos a altura do viewport */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Inclui padding e border no cálculo do tamanho */
}


@media (max-width: 1024px) {
    .section {
        padding: 20px; /* Adiciona espaçamento extra em telas menores */
    }
}

/* Ajustes de layout responsivo */
@media (max-width: 768px) {
    .section {
        height: auto; /* Permite que a altura seja definida pelo conteúdo */
        padding-top: 60px;
        padding-bottom: 40px;
        box-sizing: border-box;
        min-height: 100px; /* Adiciona uma altura mínima, mas deixa crescer conforme o conteúdo */
    }

    /* Ajustes de tamanho de texto e centralização */
    .section h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Texto de parágrafo nas seções para mobile */
    .text-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Centralização do logotipo em fundo */
    .background-logo-what-we-do-section img, .lemon-logo {
        width: 80px;
        display: block;
        margin: 0 auto;
    }
}

/* Estilos de Animação */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Aplicando as animações nas classes */
.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.animate-slide-in-left {
    animation: slideInLeft 1.5s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 1.5s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}
    /* Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
        backdrop-filter: blur(8px);
    }

    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        width: 80%;
        max-width: 600px;
        animation: fadeIn 0.5s ease;
        font-family: Arial, sans-serif;
    }

    .modal-content h3 {
        margin-top: 0;
        color: #000;
        font-size: 1.8rem;
    }

    .modal-content p {
        margin: 15px 0;
        font-size: 1.2rem;
        color: #000;
    }

    .modal-content form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .modal-content label {
        font-size: 1rem;
        color: #000;
    }

    .modal-content input, .modal-content textarea {
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .modal-content input:focus, .modal-content textarea:focus {
        border-color: #ffe045;
    }

    .modal-content button {
        padding: 10px 20px;
        font-size: 1rem;
        background-color: #ffe045;
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .modal-content button:hover {
        background-color: #ffd600;
    }

    

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Navbar Styles */
.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.navbar-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo img {
    width: 200px; /* Tamanho padrão para telas maiores */
    max-width: 100%; /* Garante que não ultrapasse o contêiner */
    height: auto; /* Mantém a proporção da imagem */
}

/* Exibe os links normalmente em telas maiores */
.nav-links {
    list-style: none;
    display: flex; /* Exibe os links no desktop */
    gap: 20px;
    transition: transform 0.3s ease;
}

.nav-links li a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffe045;
}

/* Menu hambúrguer para dispositivos móveis */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Esconde os links em dispositivos móveis por padrão */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Esconde os links no mobile */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #000;
        width: 100%;
        height: calc(100vh - 70px);
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .nav-links.active {
        display: flex; /* Mostra os links quando o hambúrguer é clicado */
    }

    .burger {
        display: block; /* Mostra o ícone hambúrguer */
    }

    .navbar .logo img {
        width: 100px; /* Tamanho reduzido para dispositivos médios */
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        width: 80px;
    }

    .nav-links li a {
        font-size: 0.9rem;
    }
}

/* Animações do hambúrguer */
.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}


.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px; /* Padding ajustado para dispositivos menores */
    min-height: 100vh;
    position: relative;
    background-color: #000;
}

.hero-text {
    max-width: 1000px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 7rem;
    line-height: 1.2;
    font-weight: bold;
}

.hero-text h1 span {
    color: #FFD700; /* Cor amarelo para "limão" */
}

.hero-text p {
    margin-top: 20px;
    font-size: 1.8rem;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: -200px; /* Ajuste para deslocar a imagem */
    transform: translateY(-50%);
    width: 600px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* CSS Responsivo */
@media (max-width: 1200px) {
    .hero {
        padding-left: 50px; /* Reduz o espaçamento lateral */
    }

    .hero-text h1 {
        font-size: 6rem;
    }

    .hero-text p {
        font-size: 1.8rem;
    }

    .hero-image {
        width: 400px;
        right: -80px; /* Ajusta a posição da imagem */
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px; /* Padding menor para dispositivos móveis */
    }

    .hero-text {
        max-width: 90%;
        text-align: center; /* Centraliza o texto */
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

    .hero-image {
        position: static; /* Remove a posição absoluta */
        transform: none;
        margin-top: 20px;
        width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .hero-image {
        width: 125px;
    }
}
.services-section-loop {
    background-color: #4a6cf7;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.services-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.services-content-loop {
    display: flex;
    gap: 50px; /* Espaçamento entre os textos */
    width: max-content;
    animation: scroll-left 15s linear infinite;
}

/* Garante que os itens ficam alinhados corretamente */
.services-item-loop {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 40px;
    flex-shrink: 0;
    white-space: nowrap; /* Impede quebras de linha */
}

/* 🔥 Animação contínua sem sobreposição */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .services-item-loop {
        font-size: 1.5rem;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .services-item-loop {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

    .services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #000;
    }

    .services-section h2 {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 10px;
    }

    .services-section .subtitle {
    font-size: 1.2rem;
    color: #5d5d5d;
    margin-bottom: 20px
    }

    .services-section .cta-button {
    display: inline-block;
    margin-bottom: 40px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #4a6cf7;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    }

    .services-section .cta-button:hover {
    background-color: #3b5abb;
    }

    .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    }

    .service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column; /* Coloca os itens um em cima do outro */
    align-items: flex-start; /* Alinha os itens à esquerda */
    text-align: left;
    position: relative;
    color: #000;
    }

    .service-card img {
    width: 50px;
    height: auto;
    margin: 0 0 10px 0; /* Remove a margem lateral e adiciona espaço abaixo do ícone */
    }

    .service-content {
        flex-grow: 1;
        text-align: left;
    }

    .service-content h3 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #000;
    }

    /* Responsividade */
    @media (min-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
.features-section {
    padding: 200px 40px;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto 40px;
    text-align: left;
}

.features-left {
    flex: 1;
}

.features-left h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.features-right {
    flex: 1;
    color: #ccc;
    font-size: 1.7rem;
    line-height: 1.6;
    text-align: left;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
    text-align: left; /* Texto alinhado à esquerda */
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha tudo à esquerda */
    gap: 10px;
}

.feature-icon-container {
    position: relative;
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #4a6cf7; /* Azul do ícone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-line-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 5px; /* Espaço entre a linha e a seta */
}

.feature-line {
    width: 300px; /* Comprimento da linha */
    height: 2px;
    background-color: #4a6cf7; /* Azul da linha */
}

.feature-line-container svg {
    flex-shrink: 0;
    z-index: 2;
    fill: #4a6cf7;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

/* Remove a linha no último item */
.features-content .feature-item:last-child .feature-line-container {
    display: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 20px;
    }

    .features-right {
        text-align: left;
    }

    .features-content {
        flex-direction: column;
        gap: 40px;
    }

    .feature-line-container {
        display: none; /* Esconde a linha em telas menores */
    }
}

.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
    justify-items: center; /* Centraliza os itens na célula */
}

.services-section h2 {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 10px;
}

.services-section .cta-button {
    display: inline-block;
    margin-bottom: 40px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #4a6cf7;
    border: 1px solid #4a6cf7;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.services-section .cta-button:hover {
    background-color: #fff;
    color: #4a6cf7;
}

.services-grid-container {
    max-width: 1600px; /* Define a largura máxima */
    margin: 0 auto; /* Centraliza o contêiner */
    justify-items: center; /* Centraliza os itens na célula */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 colunas fixas */
    gap: 20px;
    margin-top: 20px;
    justify-items: center; /* Centraliza os itens na célula */
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column; /* Coloca os itens um em cima do outro */
    align-items: flex-start; /* Alinha os itens à esquerda */
    justify-content: space-between;
    position: relative;
    width: 100%; /* Ocupa 100% da célula */
    max-width: 100%; /* Define uma largura máxima para o cartão */
}

.service-card img {
    width: 40px;
    height: 40px;
}

.service-content {
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
}

.service-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background-color: #4a6cf7;
    color: #fff;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #3b5abb;
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 3 colunas */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr); /* 2 colunas */
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 coluna */
        justify-items: center; /* Centraliza o único cartão */
    }
}

.close, .closeInfo {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close, .closeInfo:hover {
    color: #000;
}

.partners-section {
    padding: 50px 20px;
    background-color: #000; /* Fundo preto */
    color: #fff;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

.partner-item.reverse {
    flex-direction: row-reverse; /* Altera a direção para setores pares */
}

.partner-image-container {
    position: relative;
    flex: 1;
    height: 300px;
    display: flex;
    align-items: flex-end; /* Alinha a imagem na parte inferior */
    justify-content: center;
}

.partner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFCC33, #FFF);
    border-radius: 20px;
    z-index: 1;
    height: inherit; /* Adapta à altura do container */
    width: inherit; /* Adapta à largura do container */
}

.partner-image {
    position: relative;
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    z-index: 2;
    object-fit: contain;
    margin-top: 0; /* Ajusta o alinhamento da imagem */
}

.partner-content {
    flex: 1;
    text-align: left;
}

.partner-content-right {
    flex: 1;
    text-align: right;
}

.partner-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    background-color: #FFD700;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.partner-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.partner-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.partner-content-right h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.partner-content-right p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .partner-item {
        flex-direction: column;
        text-align: center;
    }

    .partner-item.reverse {
        flex-direction: column;
    }

    .partner-image-container {
        height: 80%; /* Altura ajustada para dispositivos móveis */
    }

    .partner-gradient {
        height: 100%; /* Preenche o container */
        border-radius: 10px; /* Ajuste de bordas */
    }

    .partner-image {
        height: 100%; /* Ajusta ao tamanho do container */
        width: auto; /* Mantém a proporção */
        object-fit: cover; /* Cobre o container proporcionalmente */
    }

    .partner-content {
        text-align: center;
        padding: 15px; /* Reduz o padding para dispositivos menores */
    }
}

@media (max-width: 480px) {
    .partner-image-container {
        height: 60%; /* Reduz ainda mais para dispositivos pequenos */
    }

    .partner-gradient {
        border-radius: 5px; /* Ajuste adicional para bordas */
    }

    .partner-image {
        height: 100%;
        width: auto;
    }

    .partner-content h3 {
        font-size: 1.5rem;
    }

    .partner-content p {
        font-size: 0.9rem;
    }
}

.faq-section {
    padding: 300px 20px;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #4a6cf7;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0; /* Fechado por padrão */
    overflow: hidden;
    padding: 0; /* Sem padding quando fechado */
    font-size: 1rem;
    text-align: left;
    color: #666;
    line-height: 1.5;
    transition: max-height 0.3s ease; /* Transições suaves */
}

.highlight{
    font-weight: bold;
}

.faq-item.open .faq-answer {
    padding: 15px 20px; /* Adiciona padding ao abrir */
    max-height: 1000px; /* Um valor grande o suficiente para evitar cortes */
}

.faq-icon {
    transition: transform 0.3s ease; /* Transição suave para rotação */
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Responsividade */
@media (max-width: 1200px) {
    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-question {
        font-size: 1.3rem;
        padding: 10px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-container {
        gap: 10px;
    }

    .faq-question {
        font-size: 1.2rem;
        padding: 10px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 8px;
    }

    .faq-answer {
        font-size: 0.8rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/* Centralizar verticalmente o conteúdo da secção #team-limao */
#team-limao {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;     /* Centraliza horizontalmente */
    min-height: 100vh;       /* Ocupa toda a altura da janela */
    padding: 20px;
    background-color: #000;
}

#team-limao h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative; /* Necessário para posicionar o ícone */
    display: inline-block; /* Mantém o texto e o ícone juntos */
}

#team-limao h2 .lemon-icon {
    position: absolute;
    top: -10px; /* Ajuste conforme necessário */
    right: -20px; /* Ajuste conforme necessário */
    width: 30px; /* Tamanho do ícone */
    height: auto; /* Mantém a proporção */
    transform: rotate(0deg); /* Pequeno efeito de inclinação opcional */
}

/* Responsividade */
@media (max-width: 992px) {
    #team-limao h2 {
        font-size: 2.5rem; /* Reduz o tamanho do texto */
    }

    #team-limao h2 .lemon-icon {
        top: -8px; /* Ajuste da posição vertical */
        right: -15px; /* Ajuste da posição horizontal */
        width: 25px; /* Reduz o tamanho do ícone */
    }
}

@media (max-width: 768px) {
    #team-limao h2 {
        font-size: 2rem; /* Tamanho menor do texto */
    }

    #team-limao h2 .lemon-icon {
        top: -5px; /* Ajusta posição para telas menores */
        right: -10px; /* Ajusta posição horizontal */
        width: 20px; /* Reduz tamanho do ícone */
    }
}

@media (max-width: 576px) {
    #team-limao h2 {
        font-size: 1.8rem; /* Texto ainda menor para smartphones */
    }

    #team-limao h2 .lemon-icon {
        top: -3px; /* Ajuste da posição vertical */
        right: -8px; /* Ajuste da posição horizontal */
        width: 18px; /* Tamanho menor para o ícone */
    }
}

/* Estilo do contêiner da equipa */
#team-limao .team-container {
    display: flex;
    gap: 50px; /* Espaço entre os membros */
    justify-content: center; /* Centraliza os membros horizontalmente */
    align-items: flex-start; /* Alinha os membros pelo topo */
    flex-wrap: wrap; /* Permite quebra de linha em dispositivos menores */
}

/* Estilo do membro da equipa */
#team-limao .team-member {
    position: relative;
    width: 300px; /* Ajuste inicial para telas maiores */
    height: 450px; /* Ajuste inicial para telas maiores */
    text-align: center; /* Centraliza os textos */
    margin-bottom: 20px; /* Espaço entre a imagem e o próximo membro */
}

/* Imagem principal */
#team-limao .team-member img {
    width: 100%; /* Adapta-se ao contêiner */
    height: 100%; /* Ajusta-se à altura fixa do contêiner */
    object-fit: cover; /* Preenche o contêiner sem distorção */
    transition: opacity 0.3s ease; /* Transição suave */
    z-index: 2; /* Certifica-se de que a imagem principal fique acima do ::after */
    border-radius: 8px; /* Cantos arredondados */
}

/* Nome e função */
#team-limao .team-member h2 {
    margin: 10px 0 5px; /* Espaçamento ajustado */
    font-size: 1.2rem; /* Tamanho do texto do nome */
    font-weight: bold; /* Nome em negrito */
    color: #fff;
}

#team-limao .team-member p {
    margin: 0;
    font-size: 1rem; /* Tamanho do texto da função */
    color: #666;
}

/* Estilo do pseudo-elemento ::after para a imagem secundária */
#team-limao .team-member::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Mesma largura do contêiner */
    height: 100%; /* Mesma altura do contêiner */
    background-size: cover; /* Preenche o espaço sem distorção */
    background-position: center;
    filter: grayscale(100%); /* Preto e branco */
    opacity: 0; /* Invisível por padrão */
    transition: opacity 0.3s ease; /* Suave ao passar o rato */
    z-index: 1; /* Certifica-se de que fique abaixo da imagem principal */
}

/* Imagem secundária de cada membro */
#team-limao .team-member.ricardo::after {
    background-image: url('../images/IMG_0408-nb.png');
}

#team-limao .team-member.beatriz::after {
    background-image: url('../images/IMG_0485-nb.png');
}

/* Exibe a imagem secundária ao passar o rato */
#team-limao .team-member:hover img {
    opacity: 0; /* Oculta a imagem principal */
}

#team-limao .team-member:hover::after {
    opacity: 1; /* Torna visível a imagem secundária */
}

/* Ajustes de Responsividade */
@media (max-width: 1200px) {
    #team-limao .team-member {
        width: 260px; /* Reduz largura */
        height: 400px; /* Reduz altura */
    }

    #team-limao .team-member h2 {
        font-size: 1.4rem; /* Texto menor */
    }

    #team-limao .team-member p {
        font-size: 1rem; /* Texto menor */
    }
}

@media (max-width: 992px) {
    #team-limao .team-container {
        gap: 30px; /* Reduz espaço entre os membros */
    }

    #team-limao .team-member {
        width: 220px; /* Ajusta largura */
        height: 350px; /* Ajusta altura */
    }

    #team-limao .team-member h2 {
        font-size: 1.3rem;
    }

    #team-limao .team-member p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    #team-limao .team-container {
        flex-direction: column; /* Empilha os membros */
        gap: 20px;
    }

    #team-limao .team-member {
        width: 80%; /* Ocupa maior parte da largura */
        height: auto; /* Altura ajustável */
    }

    #team-limao .team-member img {
        height: auto; /* Ajusta altura para manter a proporção */
    }

    #team-limao .team-member h2 {
        font-size: 1.2rem;
    }

    #team-limao .team-member p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #team-limao .team-member {
        width: 90%;
        height: auto; /* Ajusta altura automaticamente */
    }

    #team-limao .team-member img {
        height: auto; /* Ajusta altura para manter proporção */
    }

    #team-limao .team-member h2 {
        font-size: 1rem;
    }

    #team-limao .team-member p {
        font-size: 0.8rem;
    }
}

.footer-section {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    position: relative;
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}
.footer-top {
    text-align: left;
    margin-bottom: 50px;
}

.footer-top h2 {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 50px;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1000px;
}

.email-container input {
    flex: 1; /* Faz o input ocupar o espaço restante */
    height: 60px; /* Define a altura do input */
    padding: 0 16px; /* Padding interno */
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #333; /* Cor de fundo do input */
}

.email-container button {
    display: inline-flex; /* Flexbox para alinhar conteúdo */
    align-items: center; /* Alinha verticalmente ao centro */
    justify-content: center; /* Centraliza o conteúdo */
    gap: 8px; /* Espaçamento entre o texto e o ícone */
    background-color: #FFD700;
    border: none;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    height: 60px; /* Mesma altura do input */
    padding: 0 16px; /* Padding interno */
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap; /* Impede quebra de linha */
    transition: background-color 0.3s ease;
}

.email-container button:hover {
    background-color: #FFC107;
}

.email-container svg {
    width: 16px;
    height: 16px;
    margin: 0; /* Remove margens extras */
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.column {
    flex: 1;
}
.logo-column img {
    width: 300px;
    margin-bottom: 10px;
}
.contacts-column h3,
.links-column h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.contacts-column p {
    display: flex;
    align-items: center; /* Alinha verticalmente ícone e texto */
    gap: 10px; /* Espaço entre o ícone e o texto */
    margin: 10px 0; /* Ajuste de margens para consistência */
    font-size: 0.7rem;
}
.contacts-column p,
.links-column ul li {
    margin: 20px 0;
    font-size: 0.7rem;
}
.links-column ul {
    list-style: none;
    padding: 0;
}
.links-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.links-column ul li a:hover {
    color: #f8cb2e;
}
.footer-bottom {
    text-align: left;
    font-size: 0.7rem;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.footer-bottom p{
    color: #333;
}
.lemon-circle {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(180deg);
    opacity: 1;
}
.lemon-circle img {
    width: 500px;
}
.social-icons {
    margin-top: 10px;
}
.social-icons i {
    margin-right: 10px;
    font-size: 1rem;
    cursor: pointer;
    color: #f8cb2e;
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .email-container {
        flex-direction: column;
        align-items: stretch;
    }
    .email-container input{
        flex: 1; /* Faz o input ocupar o espaço restante */
        padding: 0 16px; /* Padding interno */
        border: 1px solid #333;
        border-radius: 8px;
        color: #fff;
        background-color: #333; /* Cor de fundo do input */
    }

    .email-container input,
    .email-container button {
        width: 100%;
        height: 60px;
    }

    .lemon-circle img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .footer-top h2 {
        font-size: 2rem;
    }

    .email-container input,
    .email-container button {
        height: 50px;
    }

    .lemon-circle img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .footer-top h2 {
        font-size: 1.5rem;
    }
    .email-container input{
        padding: 5px 16px; /* Padding interno */
    }

    .email-container input,
    .email-container button {
        height: 40px;
    }

    .lemon-circle img {
        width: 120px;
    }

    .footer-bottom {
        text-align: center;
    }
}