/* =====================================================
   AMARE INCORPORADORA - Stylesheet Principal
   ===================================================== */

/* CSS Variables - Paleta de Cores */
:root {
    /* Cores Primárias - Azul Navy (da logo) */
    --primary-dark: #0A2342;
    --primary: #0A2342;
    --primary-light: #153561;

    /* Cores de Destaque - Ocre Dourado (da logo) */
    --accent-gold: #B89B5E;
    --accent-gold-light: #c9ad75;
    --accent-gold-dark: #9a8249;

    /* Neutros */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

/* =====================================================
   PAGE LOADER
   ===================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.page-loader.hidden {
    display: none;
}

.loader-content {
    text-align: center;
    z-index: 2;
    animation: loaderFadeIn 0.8s ease forwards;
}

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

.loader-logo {
    margin-bottom: 2rem;
}

.loader-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3em;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(184, 155, 94, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(184, 155, 94, 0.6), 0 0 60px rgba(184, 155, 94, 0.3);
    }
}

.loader-logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.25rem;
}

.loader-square {
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    animation: squarePulse 1.5s ease-in-out infinite;
}

@keyframes squarePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 155, 94, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 5px rgba(184, 155, 94, 0.2);
    }
}

.loader-inc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 4px;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.loader-line-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    animation: lineProgress 2.5s ease-in-out forwards;
}

@keyframes lineProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.loader-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: taglineFade 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes taglineFade {
    to {
        opacity: 1;
    }
}

/* Overlay Curtains */
.loader-overlay-left,
.loader-overlay-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 1;
}

.loader-overlay-left {
    left: 0;
}

.loader-overlay-right {
    right: 0;
}

.page-loader.reveal-site .loader-overlay-left {
    animation: curtainLeft 0.8s ease-in-out forwards;
}

.page-loader.reveal-site .loader-overlay-right {
    animation: curtainRight 0.8s ease-in-out forwards;
}

.page-loader.reveal-site .loader-content {
    animation: contentFadeOut 0.4s ease forwards;
}

@keyframes curtainLeft {
    to {
        transform: translateX(-100%);
    }
}

@keyframes curtainRight {
    to {
        transform: translateX(100%);
    }
}

@keyframes contentFadeOut {
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* =====================================================
   HEADER & NAVEGAÇÃO
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-inner {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.header.scrolled .logo-top,
.footer .logo-top {
    font-size: 24px;
}

.logo-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.logo-square {
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    display: block;
}

.logo-inc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: -5px;
}

.header.scrolled .logo-inc,
.footer .logo-inc {
    font-size: 9px;
    letter-spacing: 4px;
}

/* Logo versão escura (para fundos claros) */
.logo-dark .logo-top {
    color: var(--primary-dark);
}

.logo-dark .logo-inc {
    color: var(--primary-dark);
}

/* Navegação Principal */
.nav-main {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-main a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.nav-main a:hover {
    color: var(--accent-gold);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.9) 0%,
        rgba(26, 45, 74, 0.7) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 var(--spacing-md);
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards, bounce 2s infinite;
    animation-delay: 1.2s, 1.5s;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

/* =====================================================
   BOTÕES
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

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

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

/* =====================================================
   SEÇÕES
   ===================================================== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.section-dark .section-description {
    color: var(--gray-400);
}

/* Linha decorativa */
.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

/* =====================================================
   SOBRE / ABOUT
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    z-index: -1;
}

.about-content {
    padding-left: var(--spacing-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* =====================================================
   PROJETOS / EMPREENDIMENTOS
   ===================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--primary-dark);
}

.project-status.lancamento { background: var(--accent-gold); color: var(--primary-dark); }
.project-status.em-obras { background: var(--primary); }
.project-status.pronto { background: #27ae60; }
.project-status.oportunidade { background: #e74c3c; }

.project-content {
    padding: 1.5rem;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.project-detail {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.project-detail strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* =====================================================
   OPPORTUNITY / LAND BANK
   ===================================================== */
.opportunity-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.opportunity-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    transition: var(--transition-normal);
}

.opportunity-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.opportunity-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.opportunity-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.opportunity-location {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.opportunity-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.opportunity-info-item {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.opportunity-info-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.opportunity-info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

/* =====================================================
   AMARE RESORTS DESTAQUE
   ===================================================== */
.resorts-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
}

.resorts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.resorts-image {
    position: relative;
}

.resorts-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.resorts-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-dark);
}

.resorts-badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resorts-badge-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.resorts-content h2 {
    margin-bottom: 1.5rem;
}

.resorts-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.resorts-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.resorts-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

/* =====================================================
   FORMULÁRIO DE CONTATO
   ===================================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact-info {
    background: var(--primary-dark);
    padding: var(--spacing-lg);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--gray-400);
    margin: 0;
}

.contact-form {
    padding: var(--spacing-md) 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition-fast);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   PÁGINA INTERNA
   ===================================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--gray-400);
}

/* =====================================================
   PROJETO SINGLE
   ===================================================== */
.project-single-header {
    height: 70vh;
    min-height: 500px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: var(--spacing-lg) 0;
}

.project-gallery-item {
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.project-gallery-item:hover img {
    transform: scale(1.1);
}

.project-sidebar {
    background: var(--gray-100);
    padding: var(--spacing-md);
    position: sticky;
    top: 100px;
}

.project-price {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.project-price span {
    font-size: 1rem;
    color: var(--gray-600);
}

/* =====================================================
   FILTROS
   ===================================================== */
.filter-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: var(--spacing-md);
    background: var(--gray-100);
    margin-bottom: var(--spacing-md);
}

.filter-select {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    min-width: 180px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* =====================================================
   ANIMAÇÕES
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid,
    .resorts-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .about-content {
        padding-left: 0;
    }

    .about-image-accent {
        display: none;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .nav-main {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-main a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* =====================================================
   TEAM SECTION - Nosso Time (Compact)
   ===================================================== */

.team-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.team-card-photo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-info {
    flex: 1;
    min-width: 0;
}

.team-card-role {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.team-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-card-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.team-card-info p strong {
    color: var(--primary-dark);
}

.team-card-info p em {
    color: var(--accent-gold-dark);
    font-style: normal;
}

.team-card-links {
    display: flex;
    gap: 0.5rem;
}

.team-card-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.team-card-links a:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* Team Compact Responsive */
@media (max-width: 768px) {
    .team-compact {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .team-card-photo {
        width: 80px;
        height: 80px;
    }

    .team-card-links {
        justify-content: center;
    }
}
