/* ===== VARIABLES ===== */
:root {
    --primary-color: #838f67;
    --secondary-color: #3b4431;
    --accent-color: #ffc75e;
    --white-color: #ffffff;
    --dark-color: #2c2c2c;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ffb347);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
}

/* ===== LOADING PROGRESS BAR ===== */
#loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.3s ease;
}

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

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--primary-color);
    color: var(--white-color) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    margin-left: 1rem !important;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--white-color);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-highlight {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}


.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ===== SALAS CARDS ===== */
.sala-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.sala-card.compact {
    font-size: 0.9rem;
}

.sala-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.sala-card.compact .sala-image {
    height: 150px;
}

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

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

.sala-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sala-badge.popular {
    background: var(--accent-color);
    color: var(--dark-color);
}

.sala-content {
    padding: 1.5rem;
}

.sala-content-clickable {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sala-content-clickable:hover {
    background-color: rgba(131, 143, 103, 0.05);
}

.sala-card.compact .sala-content {
    padding: 1rem;
}

.sala-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.sala-card.compact .sala-name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.sala-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sala-features span {
    background: var(--light-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sala-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sala-card.compact .price-current {
    font-size: 1.25rem;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
}

.price-discount {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.5rem;
}

.sala-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== PLANOS CARDS ===== */
.plano-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.plano-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.plano-header p {
    color: #666;
}

.plano-price {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plano-price .period {
    font-size: 1rem;
    color: #666;
}

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

.plano-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plano-features li i {
    color: var(--primary-color);
}

/* ===== ESTRUTURA ===== */
.estrutura-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.estrutura-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-grid .feature-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.feature-grid .feature-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-grid .feature-item:hover i {
    color: var(--white-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white-color);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-info .contact-item i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-divider {
    border-color: var(--primary-color);
    margin: 2rem 0;
}

.footer-copyright,
.footer-credits {
    margin: 0;
    opacity: 0.8;
}

.footer-credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    right: 70px;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

 @keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.commercial-contact {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #838f67; /* Cor sólida conforme solicitado */
    color: white;
    padding: 1rem 0.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: slideIn 1s ease-out 2s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.commercial-contact:hover {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 0 8px 25px rgba(131, 143, 103, 0.4);
}

.commercial-contact i {
    font-size: 1.2rem;
    color: white; /* Ícone branco */
    transform: rotate(-90deg); /* Rotaciona o ícone para ficar alinhado com o texto vertical */
}

.commercial-text {
    writing-mode: vertical-lr; /* De baixo para cima */
    text-orientation: mixed;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transform: rotate(180deg); /* Inverte o texto para ler de baixo para cima */
    color: white; /* Texto branco */
}

 @keyframes slideIn {
    from {
        transform: translateY(-50%) translateX(-100%);
    }
    to {
        transform: translateY(-50%) translateX(0);
    }
}

/* ===== LGPD POPUP ===== */
.lgpd-popup {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    max-width: 300px;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.lgpd-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.lgpd-content {
    padding: 1.5rem;
}

.lgpd-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.lgpd-buttons {
    display: flex;
    gap: 0.5rem;
}

.lgpd-buttons .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
 @media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lgpd-popup {
        bottom: 4rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .commercial-contact {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

 @media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Diminuir texto dos benefícios no mobile */
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Botões na mesma linha no mobile */
    .hero-actions {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions .btn {
        flex: 1;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .plano-price .price {
        font-size: 2.5rem;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
    
    .sala-features {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .sala-features span {
        justify-content: center;
    }
}

/* ===== UTILITIES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
    transition: background-color 0.3s ease;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

 @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out;
}
/* ===== HERO SECTION ESQUINA ===== */
.hero-section-esquina {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 40px; /* Reduzido pela metade: 80px -> 40px */
}

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

.hero-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section-esquina::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 68, 49, 0.9) 0%, rgba(59, 68, 49, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-section-esquina .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: var(--white-color);
    padding: 2rem 0;
}

.hero-title-main {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-main strong {
    color: var(--accent-color);
}

.hero-subtitle-main {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-benefits {
    margin-bottom: 3rem;
}

.benefit-item-hero {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    background: var(--accent-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-actions {
    margin-bottom: 2rem;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section-esquina {
        padding-top: 50px; /* Reduzido pela metade: 100px -> 50px */
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.1rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

/* ===== STREET VIEW POPUP ===== */
.street-view-popup, .tour-virtual-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden; /* Prevenir scroll horizontal */
}

.street-view-popup.active, .tour-virtual-popup.active {
    display: flex;
}

.popup-header {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.popup-back-btn {
    background: var(--white-color);
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.popup-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup-header {
        padding: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1rem;
    }
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--light-gray);
}

.location-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-description {
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.location-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    text-align: center;
}

.highlight-icon {
    background: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.location-map {
    width: 100%;
    max-width: 100%;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-header h2 {
        font-size: 2rem;
    }
    
    .location-address {
        font-size: 1rem;
    }
    
    .location-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .location-highlights {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 150px;
        max-width: 250px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .location-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .location-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .highlight-item {
        flex-direction: row;
        text-align: left;
        max-width: 300px;
        gap: 1rem;
    }
    
    .highlight-icon {
        flex-shrink: 0;
    }
    
    .highlight-text h4 {
        font-size: 1rem;
    }
    
    .highlight-text p {
        font-size: 0.85rem;
    }
}

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white-color);
    border: 2px solid var(--border-color);
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Mobile filter tabs layout */
@media (max-width: 768px) {
    .filter-tabs {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        max-width: 48%;
    }
}

@media (max-width: 576px) {
    .filter-tabs {
        gap: 0.4rem;
        max-width: 100%;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
        max-width: 48%;
        text-align: center;
    }
    
    /* Quebra específica para mobile */
    .filter-btn:nth-child(1),
    .filter-btn:nth-child(2) {
        flex-basis: 48%;
    }
    
    .filter-btn:nth-child(3),
    .filter-btn:nth-child(4) {
        flex-basis: 48%;
    }
    
    .filter-btn:nth-child(5) {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* ===== DETAILED SALA CARDS ===== */
.sala-card-detailed {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.sala-card-detailed .sala-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.sala-gallery {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.gallery-btn {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Botões específicos da galeria */
.planta-btn,
.tour-btn,
.projeto-btn {
    background: var(--white-color);
    color: var(--dark-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.planta-btn:hover,
.tour-btn:hover,
.projeto-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.sala-badge.compact {
    background: var(--accent-color);
    color: var(--dark-color);
}

.sala-badge.special {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* ===== SALA SPECS ===== */
.sala-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.5rem;
    background: var(--light-gray);
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.spec-item i {
    color: var(--primary-color);
    width: 14px;
    text-align: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.spec-item span {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* ===== PRICE OPTIONS ===== */
.price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.price-option:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.price-option .price-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.price-option .price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-option:hover .price-label,
.price-option:hover .price-current {
    color: var(--white-color);
}

.price-option.highlight {
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
}

/* Remover duplicado - já definido dentro de .price-option */

/* Acordeão de preços para Sala Reunião */
.price-accordion {
    width: 100%;
}

.price-accordion-button {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.price-accordion-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.price-accordion-button i:first-child {
    margin-right: 0.5rem;
}

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

.price-accordion-content.show {
    max-height: 500px;
}

.price-accordion-button.active {
    background: var(--primary-color);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ===== SALA DETAILS ===== */
.sala-details {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.sala-details h5 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.sala-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sala-details li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.sala-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gallery-content {
    background: var(--white-color);
    border-radius: var(--border-radius);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    overflow-x: auto;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.gallery-info {
    padding: 1.5rem;
    background: var(--white-color);
}

.gallery-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #666;
    margin: 0;
}

/* ===== COMPARISON BAR ===== */
.comparison-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: var(--transition);
}

.comparison-bar.show {
    transform: translateY(0);
}

.comparison-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-count {
    font-weight: 600;
    color: var(--accent-color);
}

.comparison-actions {
    display: flex;
    gap: 1rem;
}

/* ===== ADDITIONAL ANIMATIONS ===== */
 @keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

 @keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

/* ===== SALAS PAGE RESPONSIVE ===== */
 @media (max-width: 768px) {
    .hero-section-small {
        padding: 6rem 0 3rem;
    }
    
    .hero-section-small .hero-title {
        font-size: 2rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .sala-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .spec-item {
        padding: 0.35rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .spec-item i {
        width: 12px;
        font-size: 0.7rem;
    }
    
    .spec-item span {
        font-size: 0.75rem;
    }
    
    .gallery-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    #gallery-main-image {
        height: 250px;
    }
    
    .gallery-thumbnails {
        padding: 0.5rem;
    }
    
    .gallery-thumbnail {
        width: 60px;
        height: 45px;
    }
}

 @media (max-width: 576px) {
    .hero-section-small .hero-title {
        font-size: 1.75rem;
    }
    
    .price-options {
        gap: 0.3rem;
        font-size: 0.85rem;
    }
    
    .price-option {
        padding: 0.4rem;
    }
    
    .spec-item {
        padding: 0.3rem 0.35rem;
        font-size: 0.7rem;
    }
    
    .spec-item i {
        width: 10px;
        font-size: 0.65rem;
    }
    
    .spec-item span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .gallery-info {
        padding: 1rem;
    }
}
/* ===== SALAS OCUPADAS ===== */
.sala-card.occupied {
    opacity: 0.8;
    position: relative;
}

.sala-card.occupied::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.sala-card.occupied:hover {
    transform: translateY(-5px);
}

.sala-card.occupied .sala-content {
    position: relative;
    z-index: 2;
}

.sala-badge.occupied {
    background: #dc3545;
    color: var(--white-color);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.price-note {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 500;
    margin-left: 0.5rem;
}
.sala-card-detailed.occupied .sala-image img {
    filter: grayscale(100%);
}
/* ===== EM OBRAS DISPLAY ===== */
.em-obras-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    pointer-events: none;
}

.chapeu-obras {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapeu-obras i {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.mensagem-obras {
    text-align: center;
    max-width: 200px;
}

.mensagem-obras p {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}
/* ===== HERO HIGHLIGHT LINK ===== */
.hero-highlight-link {
    text-decoration: none;
    display: inline-block;
}

.hero-highlight-link:hover .hero-highlight {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 199, 94, 0.4);
}

.hero-highlight {
    transition: all 0.3s ease;
}

