/*
Theme Name: Urban Deville
Theme URI: https://www.urbandeville.com.br
Author: Equipe Urban Deville
Author URI: https://www.urbandeville.com.br
Description: Tema profissional para landing page do empreendimento imobiliário Urban Deville em Sinop/MT. Otimizado para conversão e campanhas de tráfego pago.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urban-deville
Tags: real-estate, landing-page, one-page, responsive, mobile-first
*/

/* ==========================================
   URBAN DEVILLE - LANDING PAGE
   Premium Real Estate Design
   ========================================== */

/* ==========================================
   CSS RESET & BASE
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #1e3a5f;
    --primary-dark: #0f1f3a;
    --primary-light: #2d5a8c;
    --accent-color: #f3562d;
    --accent-dark: #d8441f;
    --accent-light: #ff6b42;
    
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    
    --border-color: #e5e7eb;
    
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 5%;
    width: 150px;
    height: 150px;
    background: url('materiais/SVG/marca03.svg') center/contain no-repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.section > .container,
.section > .container-full {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.section-header.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--bg-white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   CTAS PROGRESSIVOS
   ========================================== */

.cta-secondary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-inline svg {
    width: 20px;
    height: 20px;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.cta-sticky.show {
    transform: translateY(0);
}

.cta-sticky .cta-sticky-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    background: var(--bg-white);
    color: var(--accent-color);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-sticky .cta-sticky-btn:active {
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .cta-sticky {
        display: block;
    }
}

.section-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   BADGES DE CONFIANÇA
   ========================================== */

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}

.trust-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video.is-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(15, 31, 58, 0.5) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.4) 0%, rgba(15, 31, 58, 0.6) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: url('materiais/SVG/marca01.svg') center/contain no-repeat;
    opacity: 0.04;
    animation: float 20s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: url('materiais/SVG/marca02.svg') center/contain no-repeat;
    opacity: 0.03;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 30px 20px 40px;
    width: 100%;
}

.hero-logo {
    max-width: 220px;
    margin: 0 auto 20px;
    animation: fadeInDown 1s ease;
    position: relative;
}

.hero-logo img {
    width: 100%;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.6s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 1rem;
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(243, 86, 45, 0.5);
    animation: fadeInUp 1s ease 0.8s both, pulse 2s ease-in-out 2s infinite;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(243, 86, 45, 0.6);
}

.cta-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-trust {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.85;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ==========================================
   APRESENTAÇÃO
   ========================================== */

.apresentacao {
    background: var(--bg-white);
}

.apresentacao::before {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: url('materiais/SVG/marca01.svg') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.apresentacao::before {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: url('materiais/SVG/marca01.svg') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.apresentacao-content {
    display: grid;
    gap: 50px;
    align-items: center;
}

.apresentacao-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.lead-text {
    font-size: 1.375rem !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color) !important;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.apresentacao-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.apresentacao-image img {
    width: 100%;
    transition: var(--transition);
}

.apresentacao-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   FACILIDADES
   ========================================== */

.facilidades {
    background: var(--bg-light);
    position: relative;
}

.facilidades::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: url('materiais/SVG/marca02.svg') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
    transform: translateY(-50%);
}

.facilidades-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .facilidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .facilidades-grid {
        grid-template-columns: 1fr;
    }
}

.facilidade-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.facilidade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.facilidade-card:hover .facilidade-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--bg-white);
}

.facilidade-card.highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(243, 86, 45, 0.3);
}

.facilidade-card.highlight:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(243, 86, 45, 0.4);
}

.facilidade-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--accent-color);
}

.facilidade-card.highlight .facilidade-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.facilidade-icon svg {
    width: 36px;
    height: 36px;
}

.facilidade-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.facilidade-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.facilidade-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   LOCALIZAÇÃO
   ========================================== */

.localizacao {
    background: var(--bg-white);
    position: relative;
}

.localizacao::before {
    content: '';
    position: absolute;
    top: 100px;
    right: 50px;
    width: 250px;
    height: 250px;
    background: url('materiais/SVG/marca03.svg') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.localizacao-content {
    display: grid;
    gap: 50px;
    align-items: center;
}

.endereco-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 30px;
}

.endereco-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
}

.endereco-icon svg {
    width: 30px;
    height: 30px;
}

.endereco-text h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.endereco-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.localizacao-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.localizacao-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.localizacao-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.localizacao-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.localizacao-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.localizacao-map img {
    width: 100%;
    transition: var(--transition);
}

.localizacao-map:hover img {
    transform: scale(1.05);
}

/* ==========================================
   ATRIBUTOS DO PRÉDIO
   ========================================== */

.atributos-predio {
    background: var(--bg-light);
}

.atributos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .atributos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .atributos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.atributo-item {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.atributo-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(30, 58, 95, 0.15);
}

.atributo-item:hover .atributo-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.atributo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.atributo-icon svg {
    width: 32px;
    height: 32px;
}

.atributo-item h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   ANDAMENTO DA OBRA
   ========================================== */

.andamento {
    background: var(--bg-white);
}

.andamento-content {
    max-width: 900px;
    margin: 0 auto;
}

.andamento-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.andamento-item:hover {
    box-shadow: var(--shadow-md);
}

.andamento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.andamento-header h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.status {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
}

.status.em-andamento {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-dark);
}

.progress-bar {
    height: 12px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 50px;
    transition: width 1.5s ease;
    width: 0;
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ==========================================
   ATRIBUTOS DO APARTAMENTO
   ========================================== */

.atributos-apartamento {
    background: var(--bg-light);
}

.apartamento-content {
    display: grid;
    gap: 50px;
    align-items: center;
}

.apartamento-hero {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.apartamento-hero img {
    width: 100%;
    transition: var(--transition);
}

.apartamento-hero:hover img {
    transform: scale(1.05);
}

.spec-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.spec-highlight h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.spec-highlight p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.spec-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.spec-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-left: 4px solid var(--accent-color);
}

.spec-item.highlight {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(90deg, rgba(243, 86, 45, 0.08) 0%, var(--bg-white) 35%);
}

.spec-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 10px;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
}

.spec-item h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spec-item p {
    color: var(--text-gray);
}

.apartamento-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

/* ==========================================
   GALERIA
   ========================================== */

.galeria {
    background: var(--bg-white);
    padding: 80px 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tab-btn {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    background: var(--bg-light);
    color: var(--text-gray);
    border-radius: 50px;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.gallery-content {
    padding: 0 20px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid.plantas {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-grid.plantas .gallery-item {
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--bg-white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.7);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
}

.planta-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--bg-white);
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .planta-label {
    transform: translateY(0);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==========================================
   CADASTRO
   ========================================== */

.cadastro {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cadastro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: url('materiais/SVG/marca01.svg') center/contain no-repeat;
    opacity: 0.08;
    animation: float 30s ease-in-out infinite;
}

.cadastro::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: url('materiais/SVG/marca02.svg') center/contain no-repeat;
    opacity: 0.06;
    animation: float 25s ease-in-out infinite reverse;
}

.cadastro-content {
    display: grid;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cadastro-info p {
    font-size: 1.125rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cadastro-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.cadastro-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.125rem;
    font-weight: 500;
}

.cadastro-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.badge svg {
    width: 24px;
    height: 24px;
}

.cadastro-form-wrapper {
    position: relative;
}

.cadastro-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-submit {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(243, 86, 45, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
}

.form-success {
    display: none;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 3rem;
    font-weight: 700;
}

.form-success h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    gap: 30px;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 100%;
    height: 100%;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    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 scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(243, 86, 45, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(243, 86, 45, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.facilidade-card,
.atributo-item,
.gallery-item {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.facilidade-card.reveal,
.atributo-item.reveal,
.gallery-item.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.facilidade-card.reveal.active,
.atributo-item.reveal.active,
.gallery-item.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger animation for grid items */
.facilidade-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.facilidade-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.facilidade-card.reveal:nth-child(3) { transition-delay: 0.3s; }
.facilidade-card.reveal:nth-child(4) { transition-delay: 0.4s; }
.facilidade-card.reveal:nth-child(5) { transition-delay: 0.5s; }
.facilidade-card.reveal:nth-child(6) { transition-delay: 0.6s; }

.atributo-item.reveal:nth-child(1) { transition-delay: 0.1s; }
.atributo-item.reveal:nth-child(2) { transition-delay: 0.15s; }
.atributo-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.atributo-item.reveal:nth-child(4) { transition-delay: 0.25s; }
.atributo-item.reveal:nth-child(5) { transition-delay: 0.3s; }
.atributo-item.reveal:nth-child(6) { transition-delay: 0.35s; }
.atributo-item.reveal:nth-child(7) { transition-delay: 0.4s; }
.atributo-item.reveal:nth-child(8) { transition-delay: 0.45s; }

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .hero-logo {
        max-width: 260px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .apresentacao-content,
    .localizacao-content,
    .apartamento-content,
    .cadastro-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP
   ========================================== */

@media (min-width: 1024px) {
    :root {
        --section-padding: 100px 20px;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 45px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - MOBILE ADJUSTMENTS
   ========================================== */

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 20px 15px 30px;
    }
    
    .hero-logo {
        max-width: 180px;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        font-size: 0.55rem;
        padding: 5px 10px;
        top: -8px;
        right: -8px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-primary {
        font-size: 0.9rem;
        padding: 12px 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-trust {
        font-size: 0.75rem;
        margin-top: 12px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator span {
        width: 20px;
        height: 32px;
    }
    
    .facilidades-grid {
        grid-template-columns: 1fr;
    }
    
    .atributos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .atributo-item {
        padding: 25px 15px;
    }
    
    .atributo-item h3 {
        font-size: 0.95rem;
    }
    
    .localizacao-benefits {
        grid-template-columns: 1fr;
    }
    
    .endereco-box {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid.plantas {
        grid-template-columns: 1fr;
    }
    
    .cadastro-form {
        padding: 30px 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    /* Hide decorative SVGs on mobile for performance */
    .section::before,
    .apresentacao::before,
    .facilidades::after,
    .localizacao::before {
        display: none;
    }
}

/* ==========================================
   SWIPER - LANDING (Apresentação + Apartamento)
   ========================================== */

/* Apresentação */
#apresentacao .apresentacao-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

#apresentacao .apresentacao-swiper .swiper-slide {
    line-height: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#apresentacao .apresentacao-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#apresentacao .apresentacao-swiper .swiper-pagination {
    bottom: 10px;
}

#apresentacao .apresentacao-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.55;
}

#apresentacao .apresentacao-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f3c652;
}

#apresentacao .apresentacao-swiper .swiper-button-prev,
#apresentacao .apresentacao-swiper .swiper-button-next {
    color: #ffffff;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
}

#apresentacao .apresentacao-swiper .swiper-button-prev::after,
#apresentacao .apresentacao-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 767px) {
    #apresentacao .apresentacao-swiper .swiper-button-prev,
    #apresentacao .apresentacao-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
}

/* Apartamento */
#atributos-apartamento .apartamento-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

#atributos-apartamento .apartamento-swiper .swiper-slide {
    line-height: 0;
    aspect-ratio: 5 / 6;
    overflow: hidden;
}

#atributos-apartamento .apartamento-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#atributos-apartamento .apartamento-swiper .swiper-pagination {
    bottom: 10px;
}

#atributos-apartamento .apartamento-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.55;
}

#atributos-apartamento .apartamento-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f3c652;
}

#atributos-apartamento .apartamento-swiper .swiper-button-prev,
#atributos-apartamento .apartamento-swiper .swiper-button-next {
    color: #ffffff;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
}

#atributos-apartamento .apartamento-swiper .swiper-button-prev::after,
#atributos-apartamento .apartamento-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

/* Cadastro - Andamento card final */
#cadastro .andamento-card-final {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

#cadastro .andamento-card-final h2 {
    margin: 10px 0 8px;
    color: #1e1e1e;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.2;
}

#cadastro .andamento-card-final p {
    margin: 0;
    color: #4b4b4b;
}

#cadastro .andamento-card-button {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #f3c652;
    color: #1f1f1f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#cadastro .andamento-card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(243, 198, 82, 0.45);
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .whatsapp-float,
    .scroll-indicator,
    .lightbox,
    .cta-primary {
        display: none !important;
    }
}
