:root {
    --color-primary: #0B1B3D; /* Navy Blue */
    --color-accent: #E63946; /* Red */
    --color-accent-hover: #c92f3b;
    --color-gold: #D4AF37; /* Gold / Champagne */
    --color-white: #FFFFFF;
    --color-light: #F4F6F9; /* Light Gray */
    --color-dark: #111827;
    --color-text: #4B5563;
    --color-text-dark: #1F2937;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.bg-light { background-color: var(--color-light); }
.bg-dark { background-color: var(--color-primary); }
.text-white h2, .text-white p, .text-white { color: var(--color-white); }
.text-gold { color: var(--color-gold); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(230, 57, 70, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-block {
    width: 100%;
    display: block;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 27, 61, 0.7), rgba(11, 27, 61, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    padding-top: 0;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text);
}
.text-white .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Cards Grid --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cards-grid.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(11, 27, 61, 0.05);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* --- Valorização --- */
.valorizacao {
    position: relative;
}

.pattern-bg {
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-year, .stat-project, .stat-desc {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.stat-project {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 1;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 12px;
}

.stat-value small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.highlight .stat-value {
    color: var(--color-gold);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 24px;
}

/* --- Rentabilidade --- */
.rent-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.rent-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
}

.rent-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-light);
}

.rent-header h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.rent-header span {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.rent-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rent-list li:last-child {
    border-bottom: none;
}

.rent-list li span {
    color: var(--color-text);
}

.rent-list li strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.rent-list li .text-highlight {
    color: var(--color-accent);
    font-size: 1.4rem;
}

.rent-source {
    font-size: 0.8rem;
    color: #9CA3AF;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

.rent-copy {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Features (Turismo) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-light);
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--color-text-dark);
}

.feature-card svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* --- Mobilidade --- */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.mobilidade-content {
    flex: 1;
    min-width: 300px;
}

.mobilidade-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mobilidade-content p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.mobilidade-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mobilidade-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.mobilidade-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.mobilidade-image {
    flex: 1;
    min-width: 300px;
}

.mobilidade-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* --- Galeria --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* --- FAQ Accordion --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.accordion-button[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
}

/* --- Formulario --- */
.form-container {
    max-width: 600px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.form-header p {
    margin-bottom: 32px;
    opacity: 0.9;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 27, 61, 0.1);
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #DEF7EC;
    color: #03543F;
}

.form-message.error {
    background-color: #FDE8E8;
    color: #9B1C1C;
}

.hidden {
    display: none;
}

/* --- Footer --- */
.footer {
    background-color: #050d1d;
    color: var(--color-white);
    padding: 60px 0;
}

.footer h3 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-disclaimer {
    margin-top: 32px;
    font-size: 0.8rem;
    opacity: 0.5 !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mobilidade-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}
