﻿/* Reset e configuraÃ§Ãµes bÃ¡sicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
}

/* VariÃ¡veis de cores */
:root {
    --primary-green: #27ae60;
    --secondary-green: #2ecc71;
    --dark-green: #1e8449;
    --light-green: #a9dfbf;
    --accent-green: #58d68d;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray-light: #ecf0f1;
    --shadow: rgba(39, 174, 96, 0.1);
    --gold: #ffd700;
    --gold-dark: #ffb347;
    --gold-light: #fff8dc;
}

/* AnimaÃ§Ãµes de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Classes de animaÃ§Ã£o */
.animate-title {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.animate-subtitle {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.animate-button {
    animation: scaleIn 1s ease-out 1.1s both;
}

.animate-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-item:nth-child(1) { animation-delay: 0.2s; }
.animate-item:nth-child(2) { animation-delay: 0.4s; }
.animate-item:nth-child(3) { animation-delay: 0.6s; }

/* Header e NavegaÃ§Ã£o */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}



.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-logo-img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    background: transparent;
    border-radius: 10px;
    padding: 5px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.company-name {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.company-subtitle {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.3px;
}

.company-years {
    font-weight: bold;
    font-size: 1.4rem;
    font-family: 'Times New Roman', serif;
    background: linear-gradient(45deg, var(--gold), var(--gold-dark), var(--gold), var(--gold-dark));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    position: relative;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.company-years .number {
    font-size: 2.5rem;
    font-weight: 900;
}

.company-years .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.company-years::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--white);
    border-radius: 20px;
    z-index: -1;
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* SeÃ§Ã£o Hero com Slider */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    position: relative;
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    opacity: 1;
    color: var(--white);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--gray-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* SeÃ§Ã£o Sobre */
.sobre-section {
    padding: 100px 0;
    background: var(--gray-light);
}

/* SeÃ§Ã£o HistÃ³ria da Empresa */
.empresa-historia-section {
    padding: 80px 0;
    background: var(--white);
}

.empresa-historia-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.empresa-historia-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.empresa-historia-content p:last-child {
    margin-bottom: 0;
}

.historia-cards-spacing {
    height: 80px;
    margin: 60px 0;
}

/* Ficha TÃ©cnica */
.ficha-tecnica-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.05) 0%, rgba(0, 184, 74, 0.05) 100%);
    border-radius: 20px;
}

.ficha-tecnica-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.ficha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ficha-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ficha-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.ficha-categoria {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.ficha-item p {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    text-align: center;
    line-height: 1.3;
}



.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.sobre-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.sobre-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.sobre-item:nth-child(2) {
    animation-delay: -2s;
}

.sobre-item:nth-child(3) {
    animation-delay: -4s;
}

/* ANIMAÃ‡ÃƒO FLOAT OTIMIZADA - REMOVIDA DUPLICAÃ‡ÃƒO */

.sobre-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.sobre-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px var(--shadow);
}

.sobre-item h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.sobre-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* SeÃ§Ã£o Empreendimentos */
.empreendimentos-section {
    padding: 100px 0;
    background: var(--white);
}

.empreendimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.empreendimento-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    animation: cardEntrance 0.8s ease-out forwards;
    width: 100%;
    height: auto;
    min-height: 500px;
}

.empreendimento-card:nth-child(1) {
    animation-delay: 0.2s;
}

.empreendimento-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes cardEntrance {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.empreendimento-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px var(--shadow);
}

.empreendimento-card:hover .building-background {
    transform: scale(1.05);
}

.empreendimento-card:hover .empreendimento-logo {
    transform: scale(1.15);
}

.empreendimento-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.empreendimento-visual {
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

.building-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



.empreendimento-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    object-fit: contain;
    z-index: 3;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
}

.empreendimento-logo:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: var(--white);
}

.status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    color: var(--white);
    z-index: 2;
}

.status-badge.concluido {
    background: var(--primary-green);
}

.status-badge.em-andamento {
    background: var(--accent-green);
}

.empreendimento-info {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.empreendimento-info h3 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

.empreendimento-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-cnpj {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
}

.footer-logo .logo-placeholder {
    background: rgba(255, 255, 255, 0.2);
}

.footer-logo .logo-img {
    filter: brightness(1.2) contrast(1.1);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--light-green);
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-cnpj {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-decoration: none;
    border: none;
    outline: none;
}

.social-links a:hover {
    color: var(--light-green);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-links a:focus {
    outline: none;
    text-decoration: none;
}

.social-links a:visited {
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsividade para ícones sociais */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        margin: 0 auto;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        text-decoration: none;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links a:hover,
    .social-links a:focus,
    .social-links a:visited {
        text-decoration: none;
        outline: none;
    }
}

@media (max-width: 480px) {
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
        margin: 0 auto;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        text-decoration: none;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links a:hover,
    .social-links a:focus,
    .social-links a:visited {
        text-decoration: none;
        outline: none;
    }
}

/* Estilos para VÃ­deos */
/* ========================================
   GALERIA DE OBRAS - INTERATIVA
   ======================================== */
.obra-gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Lista de meses da obra */
.obra-months {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.obra-month-btn {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark-green);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.obra-month-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.obra-month-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-color: transparent;
}

.obra-gallery-main {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.obra-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.obra-gallery-main:hover img {
    transform: scale(1.05);
}

.obra-gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.obra-gallery-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
    .obra-gallery-controls { display: none; }
}

.obra-gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.obra-gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.obra-gallery-date {
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.obra-gallery-counter {
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsividade da galeria de obras */
@media (max-width: 768px) {
    .obra-months {
        gap: 6px;
        justify-content: center;
    }
    .obra-month-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .obra-gallery-main {
        height: 200px;
    }
    
    .obra-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .obra-gallery-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }
    
    .obra-gallery-info {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .obra-gallery-date,
    .obra-gallery-counter {
        font-size: 12px;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .obra-gallery-main {
        height: 180px;
    }
    
    .obra-gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .obra-gallery-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    
    .obra-gallery-info {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .obra-gallery-date,
    .obra-gallery-counter {
        font-size: 11px;
        padding: 3px 10px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        font-weight: 600;
    }
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-item video {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item video:hover {
    transform: scale(1.02);
}

.video-item span {
    margin-top: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* BotÃ£o WhatsApp Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-button:active {
    transform: scale(0.95);
}



/* Hero Section dos Empreendimentos */
.empreendimentos-hero-section {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}


.empreendimentos-hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.empreendimentos-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.empreendimentos-hero-section p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Imagens dos Empreendimentos */
.building-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}



.hero-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.galeria-image,
.planta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 250px;
    background-color: var(--gray-light);
}

.galeria-item:hover .galeria-image,
.planta-item:hover .planta-image {
    transform: scale(1.05);
}

/* SeÃ§Ãµes de Empreendimentos Detalhadas */
.empreendimento-detalhe-section {
    padding: 100px 0;
    background: var(--gray-light);
    min-height: 100vh;
    display: block;
    visibility: visible;
    opacity: 1;
}

.empreendimento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-badge-large {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--white);
}

.status-badge-large.concluido {
    background: var(--primary-green);
}

.status-badge-large.em-andamento {
    background: var(--accent-green);
}

.empreendimento-hero {
    height: 400px;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    border-radius: 20px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder {
    text-align: center;
    color: var(--white);
}

.hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hero-image-placeholder span {
    display: block;
    font-size: 1.2rem;
    opacity: 0.8;
}

.empreendimento-info-detalhada {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 200px;
    width: 100%;
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.info-card li:last-child {
    border-bottom: none;
}

.progress-container {
    margin-top: 1rem;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-text {
    font-weight: bold;
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Progresso Geral */
.progress-overall {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.progress-overall-label {
    display: block;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar.overall {
    height: 25px;
    background: var(--gray-light);
}

.progress-fill.overall {
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    height: 100%;
}

.progress-overall-text {
    font-weight: bold;
    color: var(--dark-green);
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}

/* Mapas */
.mapa-container {
    margin-top: 15px;
}

.mapa-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.mapa-container iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--shadow);
}

/* Ficha TÃ©cnica */
.ficha-tecnica {
    margin-top: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.ficha-tecnica h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.ficha-tecnica h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.ficha-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ficha-grid .ficha-item:first-child {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.ficha-grid .ficha-item:not(:first-child) {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(46, 204, 113, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    margin: 0;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
}

.ficha-grid .ficha-item:not(:first-child):hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
    border-color: var(--primary-green);
}

/* Container para os cards menores */
.ficha-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

@media (min-width: 1024px) {
    .ficha-cards-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ficha-coluna {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.ficha-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ficha-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}

.ficha-cards-container .ficha-categoria {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ficha-grid .ficha-item:not(:first-child) p {
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ficha-cards-container .ficha-item p {
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.galeria-section,
.plantas-section {
    margin-bottom: 4rem;
}

.galeria-section h3,
.plantas-section h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.galeria-grid,
.plantas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.galeria-item,
.planta-item {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 100%;
    min-height: 300px;
}

.galeria-item:hover,
.planta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.galeria-item i,
.planta-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.galeria-item span,
.planta-item span {
    display: block;
    color: var(--white);
    font-weight: 500;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    margin: 0;
}

/* Modal para visualizaÃ§Ã£o das fotos */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease-in-out;
}

.image-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--text-dark);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.close-modal:hover {
    color: var(--primary-green);
    background: var(--white);
    transform: scale(1.1);
}

#modalImage {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.modal-info {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 15px;
}

.modal-info h3 {
    color: var(--primary-green);
    margin: 0;
    font-size: 1.4rem;
}

/* Cursor pointer para indicar que as imagens sÃ£o clicÃ¡veis */
.galeria-item,
.planta-item {
    cursor: pointer;
}

/* Efeito de hover melhorado */
.galeria-item:hover::after,
.planta-item:hover::after {
    content: 'ðŸ”';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 3;
}

/* LOADER ANTIGO REMOVIDO - USANDO NOVO LOADER OTIMIZADO */

/* Responsividade */
@media (max-width: 768px) {
    /* Garantir que nada saia das laterais no mobile */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Ajustes para o header mobile */
    .header {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        gap: 10px;
        flex: 1;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .company-subtitle {
        font-size: 0.8rem;
    }

    .company-years {
        font-size: 1.1rem;
    }

    .company-years .number {
        font-size: 1.8rem;
    }

    .company-years .text {
        font-size: 0.8rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        padding: 0 15px;
        text-align: center;
        white-space: nowrap;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.9rem;
        padding: 0 15px;
        text-align: center;
        line-height: 1.4;
    }

    /* Hero section responsivo */
    .hero-section {
        height: 70vh;
        margin-top: 70px;
        min-height: 500px;
    }

    /* ConteÃºdo do slide responsivo */
    .slide-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .empreendimentos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .empreendimento-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .empreendimento-visual {
        height: 400px;
        width: 100%;
        overflow: hidden;
    }

    .empreendimento-info {
        padding: 1.5rem 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .empreendimento-info h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        line-height: 1.2;
        font-family: 'Georgia', serif;
        font-weight: bold;
        text-align: center;
    }

    .empreendimento-info p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .sobre-item {
        padding: 2rem 1.5rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .sobre-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .sobre-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 15px;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-section {
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .shape {
        display: none;
    }

    /* Ficha tÃ©cnica para mobile 768px */
    .ficha-tecnica-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .ficha-tecnica-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .ficha-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
        margin: 0 auto;
    }

    .ficha-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 20px;
        margin: 0 auto;
    }

    .ficha-item {
        padding: 1.5rem;
        text-align: center;
        margin: 0 auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .ficha-categoria {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .ficha-item p {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-item video {
        max-width: 100%;
    }

    .empreendimentos-hero-section h1 {
        font-size: 2.5rem;
    }

    .empreendimentos-hero-section p {
        font-size: 1.1rem;
    }

    /* Melhorias para cards em mobile */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .galeria-grid,
    .plantas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .galeria-item,
    .planta-item {
        min-height: 350px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .info-card {
        padding: 1.5rem;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Ajustes adicionais para o header em telas muito pequenas */
    .header {
        padding: 0.3rem 0;
    }

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

    .nav-logo {
        gap: 8px;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-subtitle {
        font-size: 0.75rem;
    }

    .company-years {
        font-size: 1rem;
    }

    .company-years .number {
        font-size: 1.6rem;
    }

    .company-years .text {
        font-size: 0.75rem;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        padding: 0 10px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.8rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-section {
        height: 65vh;
        margin-top: 60px;
        min-height: 450px;
    }

    .empreendimento-visual {
        height: 350px;
        width: 100%;
        overflow: hidden;
    }

    .empreendimento-logo {
        width: 90px;
        height: 90px;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px;
        border-radius: 8px;
    }

    .status-badge {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .empreendimento-info {
        padding: 1.2rem 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }

    .empreendimento-info h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
        line-height: 1.2;
        font-family: 'Georgia', serif;
        font-weight: bold;
        text-align: center;
    }

    .empreendimento-info p {
        font-size: 0.8rem;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
        text-align: center;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .sobre-item {
        padding: 1.2rem 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }

    .sobre-item h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .sobre-item p {
        font-size: 0.8rem;
        word-wrap: break-word;
        line-height: 1.4;
    }

    /* Modal responsivo para mobile */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 15px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    #modalImage {
        max-height: 60vh;
    }

    .modal-info h3 {
        font-size: 1.2rem;
    }

    /* Ficha tÃ©cnica responsiva */
    .ficha-grid {
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .ficha-grid .ficha-item:first-child {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .ficha-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
        margin: 0 auto;
    }

    .ficha-grid .ficha-item:not(:first-child) {
        padding: 1rem;
        min-height: 100px;
        text-align: center;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .ficha-categoria {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .ficha-item p {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .mapa-container iframe {
        height: 250px;
    }

    /* Melhorias para cards em telas muito pequenas */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }

    .galeria-grid,
    .plantas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .galeria-item,
    .planta-item {
        min-height: 300px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .info-card {
        padding: 1rem;
        min-height: 120px;
        border-radius: 12px;
    }

    .galeria-image,
    .planta-image {
        min-height: 200px;
    }
}

/* LOADER SYSTEM - VERSÃƒO OTIMIZADA */
.novo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: none; /* Escondido por padrão */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--white);
    font-family: Arial, sans-serif;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

/* Classe para mostrar o loader quando necessário */
.novo-loader.show {
    display: flex;
}

/* Fallback de emergência - esconder loader após 6 segundos */
.novo-loader.force-hide {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -1 !important;
}

/* Fallback CSS - esconder loader automaticamente após 6 segundos */
.novo-loader {
    animation: hideLoaderAfterDelay 6s ease-in-out forwards;
}

@keyframes hideLoaderAfterDelay {
    0%, 95% {
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
        z-index: -1;
    }
}

.loader-logo {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.loader-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsividade para o slider mobile */
@media (max-width: 768px) {
    .slide {
        background-size: cover;
        background-position: center;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        padding: 0 20px;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
        white-space: nowrap;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        padding: 0 20px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Ajustes especÃ­ficos para imagens do slider */
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Hero section responsivo */
    .hero-section {
        height: 80vh;
        margin-top: 70px;
    }
    
    /* ConteÃºdo do slide responsivo */
    .slide-content {
        padding: 0 20px;
        width: 100%;
        max-width: 90%;
    }
}

/* Estilos para seção de parceiros */
.parceiros-section {
    margin: 2rem 0;
    text-align: center;
}

.parceiros-section h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.parceiro-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.parceiro-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.parceiro-card p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsividade para parceiros */
@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .parceiro-card {
        padding: 1rem;
    }
    
    .parceiro-logo {
        max-width: 100px;
        max-height: 60px;
    }
}

/* ========================================
   CARROSSEL ELEGANTE - DESIGN MODERNO 2024
   ======================================== */
.obra-carousel {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
}

.obra-carousel:hover {
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.18);
    transform: translateY(-2px);
}

.obra-slide {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
    filter: brightness(0.95);
}

/* Garantir que a imagem sempre se ajuste corretamente ao contêiner */
.obra-carousel .obra-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.obra-slide:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Navegação elegante na parte inferior */
.carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f5 100%);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(39, 174, 96, 0.1);
    position: relative;
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    opacity: 0.3;
}

.carousel-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-date {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-btn:active {
    transform: translateY(0) scale(0.95);
}

.carousel-counter {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.2);
    min-width: 60px;
    text-align: center;
}

/* Indicadores de posição elegantes */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 24px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.carousel-indicator:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

/* CSS específico para o card do carrossel */
.empreendimento-info-detalhada .info-grid .info-card:first-child {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.empreendimento-info-detalhada .info-grid .info-card:first-child h3 {
    padding: 0;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.4rem;
}

/* Layout responsivo para carrossel e estatísticas lado a lado */
.empreendimento-info-detalhada .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

/* Layout específico para Santos Dumont - centralizado */
.santos-dumont .empreendimento-info-detalhada .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Garantir que os cards tenham a mesma altura */
.empreendimento-info-detalhada .info-grid .info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Estilo para o conteúdo do card de obra */
.obra-info-content {
    padding: 1rem 0;
}

.obra-info-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}


@media (min-width: 992px) {
    .empreendimento-info-detalhada .info-grid {
        grid-template-columns: 1fr 1fr; /* Mesmo tamanho para ambos */
        gap: 2rem;
        align-items: stretch; /* Cards com mesma altura */
    }
    
    .obra-slide {
        height: 200px; /* Altura controlada para desktop */
    }
}

/* Responsividade do carrossel */
/* Responsividade elegante para mobile */
@media (max-width: 768px) {
    .obra-carousel {
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(39, 174, 96, 0.1);
    }
    
    .obra-slide {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .carousel-nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .carousel-info {
        justify-content: center;
        order: 2;
    }
    
    .carousel-controls {
        justify-content: center;
        order: 1;
        gap: 16px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .carousel-date {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .carousel-counter {
        font-size: 13px;
        padding: 10px 20px;
        min-width: 80px;
    }
    
    .carousel-indicators {
        margin-top: 12px;
        padding: 0 20px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .obra-slide {
        height: 160px;
    }
    
    .carousel-nav {
        padding: 12px 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-date,
    .carousel-counter {
        font-size: 12px;
    }
}