:root {
    --primary: #264166;
    --primary-light: #3a5c8c;
    --accent: #25D366; /* WhatsApp Green */
    --accent-hover: #1ebd5a;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    --text-dark: #101828;
    --text-muted: #667085;
    --radius-lg: 20px;
    --radius-md: 15px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(2, 12, 27, 0.2);
}

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

body {
    font-family: 'Roboto', 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    font-weight: 700;
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn-primary i {
    font-size: 1.2rem;
}

/* Section 1: Hero */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('images/terreno-a-venda-em-ibitipoca-5.webp') center bottom/cover no-repeat;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.hero-content {
    max-width: 500px;
    animation: fadeInLeft 1s ease;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.hero-title {
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section 2: Video & Features */
.features-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-card img {
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Section 3: Call to Action */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('images/terreno-a-venda-em-ibitipoca-9.webp') center left/cover no-repeat;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(38, 65, 102, 0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-list {
    list-style: none;
    margin-bottom: 40px;
}

.cta-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.cta-list li i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Section 4: Carousels */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.swiper {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.swiper-slide {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Section 5: Form */
.form-section {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media(min-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-title h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #d0d7e2;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-light);
}

/* Footer */
footer {
    background: #1a2c45;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Utility classes for form */
.hidden { display: none; }


/* --- UPLIFT CSS --- */
.video-wrapper {
  border: 4px solid var(--accent);
  box-shadow: 0 25px 60px rgba(37,211,102,0.25);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card, .cta-content, .faq-section h3, .faq-section > div > div {
  opacity: 0;
}

.reveal {
  animation: fadeInUp 0.8s ease forwards;
}

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