:root {
    --primary-color: #223d38;
    --secondary-color: #223d38;
    --dark-color: #111;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --font-family: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}

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

/* Header & Nav */
#header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.menu-container {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 25px;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #a13c30;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('NOVASIMAGENS/PrincipalVUPV.jpeg') no-repeat center center/cover;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.subtitulo-auxiliar {
    box-shadow: 15px 0 0 0 #223d3898, -5px 0 0 0 #223d3898;
	background: #223d3898;
	display: inline;
	padding: 3px 0 !important;
	position: relative;
	margin-top: 20px;
	font-weight: bold;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-cta-hero {
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-hero:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: scale(1.05);
}

/* General Section Styling */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Content Section (Loteamento) */
.content-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-section .text-content, .content-section .image-content {
    flex: 1;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.content-section p {
    margin-bottom: 20px;
}
.content-section ul {
    list-style: none;
}
.content-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.content-section ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}
.content-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery Grid (Lazer & Obras) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.gallery-item {
    text-align: center;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-item p {
    padding: 20px;
    font-weight: 600;
}

/* Localização */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.map-container iframe {
    display: block;
}

video.video-apresentacao {
    width: 100%;
    border-radius: 10px;
}

/* Contato */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}
#contact-form {
    display: flex;
    flex-direction: column;
}
#contact-form input, #contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.btn-cta-form {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}
.btn-cta-form:hover {
    background: var(--primary-color);
    opacity: 0.95;
}

/* Footer */
#footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0;
    text-align: center;
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--secondary-color);
}


/* WhatsApp Float button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media(max-width: 992px) {
    .content-section {
        flex-direction: column;
    }
    .content-section .image-content {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white-color);
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .menu-container.active {
        display: flex;
    }
    .menu {
        flex-direction: column;
        width: 100%;
    }
    .menu li {
        margin: 10px 0;
        text-align: center;
    }
    .btn-cta {
        margin-top: 20px;
        margin-left: 0;
    }
    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}