/* Estilos Globais */
body {
    font-family: 'Poppins', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
}

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8em;
    font-weight: 500;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #e74c3c;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/img_1adobra.png') no-repeat center center/cover; /* Você precisará de uma imagem de fundo chamada hero-background.jpg */
    color: #fff;
    height: 100vh; /* Altura total da tela */
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    text-align: center;
    padding-top: 80px; /* Adiciona padding para compensar o header fixo */
}

#hero .container {
    max-width: 800px;
}

#hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#hero p {
    font-size: 1.3em;
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #27ae60; /* Tom mais escuro no hover */
    transform: translateY(-3px); /* Efeito sutil de elevação */
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
}

/* Depoimentos Section */
#depoimentos {
    padding: 60px 0;
    background-color: #f9f9f9; /* Cor de fundo suave */
    text-align: center;
}

#depoimentos h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 40px;
    color: #333;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linha verde removida */
#depoimentos h2:after {
    display: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Grade responsiva */
    gap: 30px; /* Espaçamento entre os vídeos */
    margin-bottom: 40px;
}

.video-item iframe {
    width: 100%;
    height: 315px; /* Altura padrão para vídeos 16:9, ajuste se necessário */
    border-radius: 8px; /* Bordas arredondadas para os vídeos */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Sombra suave */
}

.cta-container {
    margin-top: 30px;
}

/* Beneficios Section */
#beneficios {
    padding: 80px 0;
    background-color: #fff;
}

#beneficios h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#beneficios h2:after {
    display: none;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Ajuste para os dois últimos itens ficarem centralizados */
    .beneficios-grid .beneficio-item:nth-child(4) {
        grid-column: 1 / span 1;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .beneficios-grid .beneficio-item:nth-child(5) {
        grid-column: 2 / span 1;
        margin-left: 20px;
        margin-right: auto;
    }
}

.beneficio-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.beneficio-item .icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333; /* Preto para manter o esquema neutro */
}

.beneficio-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.beneficio-item p {
    color: #666;
    line-height: 1.6;
}

#beneficios .cta-container {
    text-align: center;
    margin-top: 50px;
}

/* Projetos Section */
#projetos {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.projetos-galeria {
    margin-bottom: 40px;
}

/* Estilos para o container da imagem principal */
.imagem-principal-container {
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.imagem-principal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.imagem-principal .projeto-info {
    padding: 15px 20px;
    background-color: #fff;
    border-top: 3px solid #2ecc71;
}

.imagem-principal .projeto-info p {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
    font-size: 1.1em;
}

/* Estilos para o container das miniaturas */
.miniaturas-container {
    margin-bottom: 30px;
}

.miniatura {
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 2px solid transparent;
}

.miniatura img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.swiper-slide-thumb-active .miniatura {
    opacity: 1;
    border-color: #2ecc71;
}

/* Estilos para os controles do Swiper */
.swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-principal {
    padding-bottom: 0;
}

.swiper-miniaturas {
    padding-top: 10px;
    padding-bottom: 10px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
    color: #2ecc71 !important;
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Descrição do projeto */
.projeto-descricao {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    line-height: 1.6;
    font-size: 1.05em;
}

#projetos h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#projetos h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2ecc71;
    margin: 15px auto 0;
}

/* Estilos para os carrosséis */
.carrossel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.carrossel-principal {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carrossel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.carrossel-slide.active {
    opacity: 1;
    display: block;
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrossel-miniaturas {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.miniatura {
    width: 100px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.miniatura:hover {
    opacity: 0.8;
}

.miniatura.active {
    opacity: 1;
    border-color: #2ecc71;
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Removido para evitar duplicação dos botões */

.carrossel-prev, .carrossel-next {
    background-color: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 100;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.carrossel-prev {
    left: 20px;
}

.carrossel-next {
    right: 20px;
}

.carrossel-prev:hover, .carrossel-next:hover {
    background-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .carrossel-prev {
        left: 15px;
        margin-left: 0;
    }
    
    .carrossel-next {
        right: 15px;
        margin-right: 0;
    }
}

.projeto-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.projeto-item:hover {
    transform: translateY(-10px);
}

.projeto-img {
    height: 250px;
    overflow: hidden;
}

.projeto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projeto-item:hover .projeto-img img {
    transform: scale(1.1);
}

.projeto-info {
    padding: 15px 20px;
    background-color: #fff;
    border-top: 3px solid #2ecc71;
}

.projeto-info p {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
}

#projetos .cta-container {
    text-align: center;
    margin-top: 50px;
}

/* Sobre Section - QUEM SOMOS - NOVA VERSÃO */
#sobre-v2 {
    padding: 80px 0;
    background-color: #ffffff;
}

.sobre-novo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
    position: relative;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-novo h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2ecc71;
    margin: 15px auto 0;
}

.quem-somos-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .quem-somos-layout {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
    }
    
    .coluna-texto {
        flex: 0 0 55% !important;
        padding-right: 40px !important;
        order: 1 !important;
    }
    
    .coluna-foto {
        flex: 0 0 40% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        justify-content: flex-start !important;
        order: 2 !important;
    }
}

.coluna-texto p {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
    color: #444;
    max-width: 95%;
}

.coluna-foto {
    text-align: center;
}

.foto-perfil {
    width: 100% !important;
    max-width: 450px !important;
    max-height: 450px !important;
    object-fit: contain !important;
    margin-left: auto !important;
    float: right !important;
}

.legenda {
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1em;
    padding: 8px 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-left: auto;
    margin-right: 0;
}





#sobre-v2 .cta-container {
    text-align: center;
    margin-top: 30px;
}

/* Contato Section */
#contato {
    padding: 80px 0;
    background-color: #fff;
}

#contato h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contato h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2ecc71;
    margin: 15px auto 0;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contato-container {
        grid-template-columns: 1fr 1fr;
    }
}

.mapa {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.6em;
    color: #2ecc71;
    margin-top: 3px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.info-item a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px dotted transparent;
}

.info-item a:hover {
    color: #2ecc71;
    border-bottom: 1px dotted #2ecc71;
}

/* Footer */
footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 70px 0 25px;
    margin-top: 60px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    position: relative;
    border-top: 4px solid #2ecc71;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #2ecc71, #3498db);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linha verde removida */
.footer-title:after {
    display: none;
}

.mapa-container {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-size: 1.8em;
    margin: 0 0 5px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.footer-logo p {
    margin: 0;
    opacity: 0.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.footer-desc {
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 15px;
    font-weight: 400;
}

.footer-contato h4, .footer-social-container h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #4ade80;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linha verde removida */
.footer-contato h4::after, .footer-social-container h4::after {
    display: none;
}

.footer-contato ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contato ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-weight: 400;
}

.footer-contato ul li i {
    margin-right: 10px;
    color: #2ecc71;
    font-size: 1.1em;
    margin-top: 3px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.3);
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 25px 0;
    margin-top: 30px;
    color: #ffffff;
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9em;
}

.footer-creditos a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-creditos a:hover {
    text-decoration: underline;
}

.footer-creditos i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

