@import url(mobile.css);

/* Custom CSS Variables */
:root {
    --azul: #2c68af;
    --verde: #2ec5b6;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Bootstrap Color Overrides */
.bg-azul {
    background-color: var(--azul) !important;
}

.text-azul {
    color: var(--azul) !important;
}

.text-verde {
    color: var(--verde) !important;
}

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

.bg-cinza{
background-color: #ECEFEF;
}


.btn-verde {
    background-color:#e06805;
    border-color:#e06805;
    color: var(--white);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: .8rem;
}

.btn-verde:hover {
    background-color: #26a89c;
    border-color: #26a89c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 197, 182, 0.3);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(44, 104, 175, 0.95) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--verde) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 104, 175, 0.7), rgba(44, 104, 175, 0.7)), 
                url('../img/banner-principal0.png') center/cover no-repeat;
    min-height: 600px;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-info h2 {
    text-align: left;
    line-height: 1.2;
}

.hero-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
}

.form-control-custom {
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 0;
    color: var(--white);
    padding: 12px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.form-control-custom:focus {
    background: transparent;
    border-color: var(--verde);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(46, 197, 182, 0.25);
}

/* Location Section */
.location-section {
    padding: 0;
}

.location-image {
    height: 100%;
    min-height: 500px;
}

.location-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.map-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    overflow: hidden;
}

 

.gallery-column img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Apartments Section */
.apartments-section {
    padding: 5rem 0;
}

.apartment-card {
    transition: transform 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-10px);
}

.apartment-card img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.download-section {
    /* padding: 5rem 0; */
}

.download-content h2 {
    line-height: 1.2;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.feature-item {
    padding: 2rem 1rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    max-width: 150px;
    height: auto;
}

/* Construction Section */
.construction-section {
    padding: 5rem 0;
}

.construction-content {
    padding-left: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
}

/* Utility Classes */
.object-fit-cover {
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-info h2 {
        
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-info h2 {
        
    }
    
    .location-content {
        min-height: auto;
        padding: 3rem 2rem !important;
    }
    
    .map-overlay {
        display: none;
    }
    
    .construction-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-info h2 {
       
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .location-image {
        min-height: 300px;
    }
    
    .feature-item {
        padding: 0;
        margin-bottom: 0;
    }
    
    .gallery-column {
        margin-bottom: 1rem;
    }
    
    .contact-form-section,
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .apartments-section,
    .features-section,
    .construction-section,
    .download-section {
        padding: 3rem 0;
    }

    #contato{

background-image: unset !important
    }



}

.mapa{

    width: 80%;
    max-width: 500px;
    margin: 1rem;

}


@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-info h2 {
         
    }
    
    .btn-verde {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .form-control-custom {
        margin-bottom: 1rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
}

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

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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




#contato{
    background: url('../img/vetor-10.png') , url('../img/vetor-20.png');
    background-position: left, right;
    background-repeat: no-repeat;
    background-size: contain , contain;
    
}




.meninos{
    background-image: url('../img/foto-localiza-o-10.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: ;
}

.bg-mapa{
    background-image: url('../img/bg-mapa.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

#imagens{

    background: url('../img/grafismos/c-branco.png') ;
    
    background-position: right top;
    background-repeat: no-repeat;
    
    

}

.btrr{
border-top-right-radius:15px;

}

.bbrr{
border-bottom-right-radius:15px;
}

#plantas{

background-color: #ECEFEF;
background-image:  url('../img/grafismos/c-azul.png'), url('../img/grafismos/05.png') ;
background-position: left top, right bottom;
background-repeat: no-repeat;

 
}

.bg-plantas{
    background-image: url('../img/bg-plantas.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    height: 70vh;
    border-top-left-radius: 40px;
    border-bottom-left-radius:  40px;

}

.feature-item p {
    color: #fff;
}
