/* =============================================
   ENCANTOS DA LAGOA - Frontend Styles
   Premium Design - Nature & Water Theme
   ============================================= */

:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e3654;
    --secondary: #27ae60;
    --secondary-light: #2ecc71;
    --accent: #f1c40f;
    --accent-light: #f9e154;
    --dark: #1c2833;
    --gray-dark: #2c3e50;
    --gray: #7f8c8d;
    --gray-light: #ecf0f1;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ===== HEADER / NAVBAR ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 72px;
    width: auto;
    display: block;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.6rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

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

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    background: var(--white);
}

.dropdown-item {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(26, 82, 118, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Login Button */
.btn-login {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.btn-login::after {
    display: none !important;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100% !important;
    width: 100% !important;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100% !important;
    min-height: 550px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    display: none;
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    min-height: 370px;
    margin-left: 6%;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.72) 0%,
        rgba(15, 23, 42, 0.48) 100%
    );
    /*backdrop-filter: blur(12px);*/
    /*-webkit-backdrop-filter: blur(12px);*/
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero-slide-content a,
.hero-slide-content button,
.hero-slide-content input,
.hero-slide-content select,
.hero-slide-content .badge-location {
    pointer-events: auto;
}

.hero-slide-content .badge-location {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slide-content h1 {
    font-size: 2.3rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.hero-slide-content .hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    pointer-events: auto;
    margin-top: auto;
}

.hero-slide-content .btn-hero {
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: auto;
    cursor: pointer;
}

.hero-slide-content .btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.hero-slide-content .btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 82, 118, 0.4);
}

.hero-slide-content .btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

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

/* Slider Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    opacity: 1 !important;
    z-index: 30 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    border: none;
    transition: var(--transition);
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.45);
}

.hero-slider .carousel-indicators {
    bottom: 30px;
    z-index: 30 !important;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1;
    z-index: 30 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: var(--transition);
}

.hero-slider .carousel-indicators .active {
    background: var(--white);
    border-color: var(--white);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--white);
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary);
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.stat-item .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--light);
}

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

.section-title .badge-label {
    display: inline-block;
    background: rgba(26, 82, 118, 0.08);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--dark);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin-top: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.about-feature i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* ===== FEATURES / DIFFERENTIALS ===== */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

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

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(26, 82, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
    color: var(--white);
}

/* ===== LOCATION SECTION ===== */
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
}

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

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}

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

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

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 84px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom {
    position: relative;
    z-index: 1;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== DOCUMENTS ===== */
.document-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
}

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

.document-card .doc-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: rgba(26, 82, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.document-card .doc-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.document-card .doc-info p {
    font-size: 0.82rem;
    color: var(--gray);
    margin: 0;
}

.document-card .doc-download {
    margin-left: auto;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.document-card .doc-download:hover {
    color: var(--primary-dark);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

/* ===== TOAST / ALERTS ===== */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
}

.toast-success {
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 64px;
    }

    .hero-slider {
        height: 80vh;
        min-height: 520px;
    }

    .hero-slide-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 90%;
    }

    .hero-slide-content h1 {
        font-size: 2.4rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        box-shadow: var(--shadow);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 85vh;
        min-height: 520px;
        max-height: none;
    }

    .hero-slide-content {
        margin: 0 auto;
        padding: 1.5rem 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-slide-content .badge-location {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
        margin-bottom: 0.6rem;
    }

    .hero-slide-content h1 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }

    .hero-slide-content p {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }

    .hero-slide-content .hero-buttons {
        justify-content: center;
        gap: 0.65rem;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .hero-slide-content .btn-hero {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
        border-radius: 50px;
        gap: 0.4rem;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-slider .carousel-control-prev {
        left: 6px;
    }

    .hero-slider .carousel-control-next {
        right: 6px;
    }

    .hero-slider .carousel-indicators {
        bottom: 15px;
        margin-bottom: 0;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .page-banner {
        height: 220px;
        margin-top: 76px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

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

@media (max-width: 576px) {
    .navbar-brand img {
        height: 58px;
    }

    .navbar {
        padding-top: .35rem;
        padding-bottom: .35rem;
    }

    .page-banner {
        margin-top: 69px;
    }

    .hero-slider {
        height: 85vh;
        min-height: 480px;
    }

    .hero-slide-content {
        padding: 1rem 0.5rem;
    }

    .hero-slide-content h1 {
        font-size: 1.55rem;
    }

    .hero-slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-slide-content .hero-buttons {
        gap: 0.5rem;
        flex-direction: row;
        justify-content: center;
    }

    .hero-slide-content .btn-hero {
        padding: 0.55rem 1.2rem;
        font-size: 0.82rem;
        font-weight: 600;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ÁREA DO CONDÔMINO ===== */
.navbar-condomino .navbar-brand,
.navbar-condomino .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-condomino .navbar-nav .nav-link:hover,
.navbar-condomino .navbar-nav .nav-link:focus,
.navbar-condomino .navbar-nav .nav-link.active,
.navbar-condomino .navbar-nav .nav-link.show {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.navbar-condomino .navbar-nav .nav-link::after {
    background: #ffffff;
}

.navbar-condomino .dropdown-item {
    color: var(--gray-dark) !important;
}

.navbar-condomino .dropdown-item:hover,
.navbar-condomino .dropdown-item:focus,
.navbar-condomino .dropdown-item.active {
    color: var(--primary-dark) !important;
    background: rgba(26, 82, 118, 0.1);
}

.navbar-condomino .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.55);
}
