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

:root {
    --primary-color: #222222;
    --secondary-color: #717171;
    --accent-color: #FF385C;
    --background-color: #FFFFFF;
    --light-gray: #F7F7F7;
    --border-color: #DDDDDD;
    --text-color: #222222;
    --text-light: #717171;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #E31C5F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-outline:hover {
    background-color: var(--light-gray);
    border-color: var(--text-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-airbnb {
    background-color: #FF5A5F;
    color: white;
}

.btn-airbnb:hover {
    background-color: #E31C5F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero com vídeo e faixas laterais */
.hero-video-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.hero-sidebar {
    width: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-sidebar-left {
    background: linear-gradient(135deg, var(--accent-color) 0%, #E31C5F 100%);
}

.hero-sidebar-right {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
}

.sidebar-content {
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.sidebar-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sidebar-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.sidebar-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-center {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.25);
    padding: 4rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.hero-logo {
    max-width: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.3));
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #f7f7f7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Destaques com imagens de fundo */
.highlights-img {
    padding: 0;
    background: var(--background-color);
}
.highlights-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}
.highlight-img-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 260px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.highlight-img-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}
.highlight-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.highlight-img-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    text-align: left;
}
.highlight-img-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.highlight-img-content p {
    font-size: 1.1rem;
    color: #f7f7f7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
    .highlights-img-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-title { font-size: 2rem; }
    .hero-logo { max-width: 120px; }
    .highlight-img-card { min-height: 220px; }
    .highlight-img-content { padding: 1.5rem 1rem 1.2rem 1rem; }
    
    /* Hero responsivo */
    .hero-sidebar {
        width: 120px;
    }
    
    .sidebar-content {
        padding: 1rem 0.5rem;
    }
    
    .sidebar-icon {
        font-size: 1.5rem;
    }
    
    .sidebar-text h4 {
        font-size: 0.9rem;
    }
    
    .sidebar-text p {
        font-size: 0.8rem;
    }
}
@media (max-width: 600px) {
    .hero-overlay { padding: 2rem 0.5rem 1rem 0.5rem; }
    .hero-title { font-size: 1.3rem; }
    .hero-logo { max-width: 80px; }
    
    /* Fotos quadradas com texto abaixo */
    .highlight-img-card { 
        min-height: 250px; 
        aspect-ratio: 1/1;
        flex-direction: column;
        justify-content: flex-end;
    }
    .highlight-img-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%) !important;
    }
    .highlight-img-content { 
        padding: 1rem 0.7rem 0.7rem 0.7rem;
        background: rgba(0,0,0,0.8);
        margin: 0;
    }
    .highlight-img-content h3 { 
        font-size: 1.1rem; 
        margin-bottom: 0.3rem;
        color: white;
    }
    .highlight-img-content p { 
        font-size: 0.95rem; 
        line-height: 1.3;
        color: #f0f0f0;
    }
    
    /* Hero mobile - remove faixas laterais */
    .hero-video-fullscreen {
        flex-direction: column !important;
        height: 100vh !important;
    }
    
    .hero-sidebar {
        display: none !important;
    }
    
    .hero-center {
        width: 100% !important;
        height: 100% !important;
    }
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: var(--transition);
}

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

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.highlight-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Quick Info Section */
.quick-info {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.quick-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quick-info-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.quick-info-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.quick-info-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E31C5F 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Image Credits */
.image-credit {
    display: block;
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

/* Image Mosaic */
.image-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-mosaic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-mosaic img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Primeira imagem da visão geral - quadrada e focada na parte inferior */
.overview-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 8px;
    display: block;
}

.image-mosaic .mosaic-credit {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

/* Responsive Image Mosaic */
@media (max-width: 768px) {
    .image-mosaic {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }
    
    .image-mosaic img {
        height: 150px;
        border-radius: 8px;
    }
    
    .overview-image img {
        width: 100%;
        height: 250px;
        object-position: center bottom;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .quick-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hero mobile - força remoção das faixas laterais */
    .hero-video-fullscreen {
        flex-direction: column !important;
        height: 100vh !important;
    }
    
    .hero-sidebar {
        display: none !important;
    }
    
    .hero-center {
        width: 100% !important;
        height: 100% !important;
    }
}

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

.hero-content,
.highlight-card,
.quick-info-text {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading states */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E31C5F 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Studio Overview */
.studio-overview {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.overview-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.overview-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.feature-card li:last-child {
    border-bottom: none;
}

/* Kitchen Details */
.kitchen-details {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.kitchen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kitchen-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.kitchen-features {
    margin-top: 2rem;
}

.kitchen-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kitchen-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 0;
}

.kitchen-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.kitchen-feature p {
    margin-bottom: 0;
    color: var(--text-light);
}

.kitchen-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.kitchen-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

/* Work Station */
.work-station {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.work-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.work-image:hover img {
    transform: scale(1.05);
}

.work-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.work-features {
    list-style: none;
    margin: 2rem 0;
}

.work-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.work-note {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}

/* Bathroom Details */
.bathroom-details {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.bathroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bathroom-text h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bathroom-text ul {
    list-style: none;
}

.bathroom-text li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.bathroom-text li:last-child {
    border-bottom: none;
}

.bathroom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bathroom-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.bathroom-images img:hover {
    transform: scale(1.05);
}

/* Bedroom Details */
.bedroom-details {
    padding: 4rem 0;
    background: #f8f9fa;
}

.bedroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bedroom-features {
    margin-top: 2rem;
}

.bedroom-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bedroom-feature .feature-icon {
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.bedroom-feature h4 {
    margin: 0 0 0.5rem 0;
    color: var(--accent-color, #FF385C);
}

.bedroom-feature p {
    margin: 0;
    color: #666;
}

.bedroom-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bedroom-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* Living Area Details */
.living-details {
    padding: 4rem 0;
    background: #fff;
}

.living-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.living-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.living-features {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.living-features li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #444;
}

.living-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

/* Responsive Design for Details Page */
@media (max-width: 768px) {
    .overview-grid,
    .kitchen-content,
    .work-content,
    .bathroom-grid,
    .bedroom-content,
    .living-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .kitchen-gallery,
    .bathroom-images,
    .bedroom-gallery {
        grid-template-columns: 1fr;
    }

    .kitchen-feature {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Gallery Styles */
.gallery-nav {
    padding: 2rem 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-tab:hover,
.gallery-tab.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.tab-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-left: 8px;
    font-weight: 600;
}

.gallery-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-status {
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.filter-loading {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.gallery-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background: #222;
    display: flex;
    align-items: flex-end;
    opacity: 1;
    transform: scale(1);
    aspect-ratio: 1 / 1;
}

.gallery-item.hidden {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    transition: all 0.3s ease-out !important;
}

.gallery-item {
    transition: all 0.3s ease-out;
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.95);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.1) 100%);
    color: white;
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 2;
    pointer-events: none;
}

.gallery-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.gallery-info {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.info-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.info-content p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.info-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.info-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gallery Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .gallery-item img { aspect-ratio: 1 / 1; }
    .gallery-item { aspect-ratio: 1 / 1; }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img { aspect-ratio: 1 / 1; }
    .gallery-item { aspect-ratio: 1 / 1; }
    .gallery-overlay { padding: 1rem 0.5rem 0.5rem; }
    .gallery-title { font-size: 1rem; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.8);
}

.modal-caption {
    display: none !important;
}



/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-image {
        margin-bottom: 0;
        max-height: 75vh;
        order: 1;
    }
    

}

/* Gallery Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeIn 0.6s ease-out;
}

/* Common Areas Styles */
.common-area-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.common-area-section.light {
    background-color: var(--light-gray);
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.area-grid.reverse {
    direction: rtl;
}

.area-grid.reverse > * {
    direction: ltr;
}

.area-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.area-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.area-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-feature {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.area-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.area-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.area-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.area-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.area-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.area-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.area-image:hover img {
    transform: scale(1.05);
}

/* Neighborhood Styles */
.neighborhood-overview {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.neighborhood-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Styles */
.contact-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(227, 28, 95, 0.1);
}

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

.map-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    margin-top: 2rem;
    text-align: center;
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .neighborhood-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .area-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .area-features {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-stats {
        grid-template-columns: 1fr;
    }
}



/* Seção Vídeo em Destaque */
.video-destaque-section {
    width: 100vw;
    background: var(--background-color, #fff);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.video-destaque-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    min-height: 50vh;
    margin: 0 auto;
    padding: 2rem 0;
}
.video-destaque-sidebar {
    flex: 1 1 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color, #222) 0%, #333 100%);
    min-width: 80px;
    max-width: 200px;
    border-radius: 0 24px 24px 0;
    margin: 0 1vw;
    display: block;
}
.video-destaque-video {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 0.5rem;
}
.video-destaque-video video {
    display: block;
    width: auto;
    height: 70vh;
    max-width: 100vw;
    max-height: 70vh;
    background: #000;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .video-destaque-container {
        flex-direction: column;
        padding: 1rem 0;
    }
    .video-destaque-sidebar {
        display: none;
    }
    .video-destaque-video {
        flex: 1 1 100%;
        width: 100%;
        padding: 0;
    }
    .video-destaque-video video {
        width: 100vw;
        height: 50vw;
        max-height: 60vw;
    }
}
@media (max-width: 600px) {
    .video-destaque-section {
        min-height: 40vh;
    }
    .video-destaque-video video {
        height: 38vw;
        max-height: 60vw;
    }
}

/* Media query específica para celulares pequenos - força remoção das tarjas laterais */
@media (max-width: 390px) {
    .hero-video-fullscreen {
        flex-direction: column !important;
        height: 100vh !important;
    }
    
    .hero-sidebar {
        display: none !important;
        width: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .hero-center {
        width: 100% !important;
        height: 100% !important;
        flex: 1 !important;
    }
}

/* Regra geral para todos os dispositivos móveis - esconde tarjas laterais */
@media (max-width: 768px) {
    .hero-sidebar {
        display: none !important;
    }
    
    .hero-video-fullscreen {
        flex-direction: column !important;
    }
    
    .hero-center {
        width: 100% !important;
        height: 100% !important;
    }
} 