/* Correções de layout */

/* Estilos gerais */
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Animações de entrada */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Efeito de pulsação para o botão de play */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

section {
    padding: 5rem 0;
    clear: both;
    overflow: hidden;
    position: relative;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

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

/* Estilos para imagens */
.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Estilos para o logo */
.logo-img {
    width: 230px;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    margin: 0;
    padding: 5px 0;
}

/* Ajustes para o header */
.header {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    height: 80px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Ajustes para o menu */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Estilos para a seção de região */
.regiao-destaque-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.regiao-content {
    max-width: 800px;
    margin: 0 auto;
}

.regiao-text {
    text-align: center;
}

.regiao-text .destaque {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.regiao-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.regiao-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.regiao-info-column {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.regiao-info-column h3 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.regiao-destaque-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
}

.regiao-destaque-item i {
    font-size: 1.2rem;
    color: #2e7d32;
    width: 25px;
    text-align: center;
}

.regiao-destaque-item p {
    margin: 0;
    font-size: 1rem;
}



/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

/* Galeria Virtual */
.galeria-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    margin-bottom: 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #4CAF50 #f1f1f1;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.galeria-slider::-webkit-scrollbar {
    height: 8px;
}

.galeria-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.galeria-slider::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 10px;
}

/* Indicadores da galeria */
.galeria-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.galeria-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-indicator.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

/* Botões de navegação da galeria */
.galeria-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
}

.galeria-prev, .galeria-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.galeria-prev:hover, .galeria-next:hover {
    background-color: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.galeria-item {
    flex: 0 0 300px;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
    height: 100%;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.galeria-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.galeria-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    pointer-events: none;
}

/* Experiência Imersiva */
.experiencia-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.experiencia-text {
    flex: 1 1 400px;
}

.experiencia-video {
    flex: 1 1 400px;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experiencia-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-overlay i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-overlay:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.experiencia-bonus {
    background-color: rgba(76, 175, 80, 0.1);
    border: 2px dashed #4CAF50;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experiencia-bonus:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.beneficio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.beneficio-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.beneficio-img img {
    transition: transform 0.5s ease;
}

.beneficio-card:hover .beneficio-img img {
    transform: scale(1.05);
}

.beneficio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
}

.beneficio-content .icon {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #4CAF50;
}

.beneficio-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
}

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

/* Modal de vídeo */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

.experiencia-bonus i {
    color: #4CAF50;
    font-size: 2rem;
}

.experiencia-bonus p {
    margin: 0;
    font-weight: 500;
}

/* Empreendimento */
.empreendimento-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Destaque para o rodapé */
.footer-destaque {
    font-weight: bold;
    color: #4CAF50;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.empreendimento-image {
    height: 350px;
    background-color: #1976d2;
    background-image: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.empreendimento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #2e7d32;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #2e7d32;
    z-index: 1;
}

/* Depoimentos */
.depoimentos-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #4CAF50 #f1f1f1;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.depoimentos-slider::-webkit-scrollbar {
    height: 8px;
}

.depoimentos-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.depoimentos-slider::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 10px;
}

.depoimento {
    flex: 0 0 350px;
    min-width: 350px;
}

.depoimento-content {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.depoimento-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #f5f5f5;
    transform: rotate(45deg);
}

/* Dúvidas */
.duvida {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.duvida-pergunta {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duvida-pergunta h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Cores de fundo alternadas para melhor visualização */
.introducao { background-color: white; }
.historia { background-color: #f9f9f9; }
.empreendimento { background-color: white; }
.galeria-virtual { background-color: #f9f9f9; }
.experiencia-imersiva { background-color: white; }
.beneficios { background-color: #f9f9f9; }
.depoimentos { background-color: white; }
.duvidas { background-color: #f9f9f9; }
.contato { background-color: white; }

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

/* Pulse animation removed as requested */

.whatsapp-float a:hover {
    transform: scale(1.15);
    background-color: #20c25e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Estilos para barras de progresso */
.obra-progress {
    margin-top: 15px;
}

.progress-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    width: 150px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px;
}

.progress-container {
    flex: 1;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 10px;
}

.progress-bar {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 6px;
    transition: width 1s ease-in-out;
}

.progress-percent {
    width: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}
