@charset "UTF-8";

/* CSS - Rafael Branco | Ano: 2025 */

@font-face {
    font-family: Reina Neue;
    src: url("../font/reina-neue/ReinaNeue-News.otf") format("opentype");
}

select,
option,
textarea,
input[type="submit"],
input[type="text"],
input[type="text"]::placeholder{
    font-family: 'Montserrat', sans-serif;
}





/* Banner Slider */
.banner-slider {
    /*margin-top: 80px;*/
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
}

.slide-content {
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--secondary);
    border: 0;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Empreendimentos */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.empreendimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.empreendimentos-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.empreendimento-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.empreendimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.empreendimento-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.empreendimento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.empreendimento-card:hover .empreendimento-image img {
    transform: scale(1.1);
}

.empreendimento-card .status-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.empreendimento-content {
    padding: 20px;
}

.empreendimento-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.empreendimento-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.empreendimento-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item i {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 12px;
    color: var(--gray);
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}
.about-carousel {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
    }
}

/* Contact */
.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 14px;
    color: var(--gray);
}

.form-check a {
    color: var(--primary);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.contact-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info {
    flex: 1;
}

.contact-info iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
}

.contact-details {
    margin-top: 30px;
}

.contact-details h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.contact-text a:hover {
    text-decoration: underline;
}



/*-------------------------- Internas ----------------------------*/
/* Breadcrumb */
.breadcrumb {
    padding: 20px 0 20px;
    background-color: var(--light);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-content a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb-content a:hover {
    color: var(--primary);
}

.breadcrumb-content span {
    margin: 0 10px;
    color: var(--gray);
}

/* Empreendimento Hero */
.empreendimento-hero {
    padding: 30px 0 50px;
}

.hero-content {
    display: flex;
    gap: 50px;
}

.hero-info {
    flex: 1;
}

.hero-info h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.empreendimento-hero .status-label {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.detail-text h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.detail-text p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empreendimento Gallery */
.empreendimento-gallery {
    padding: 50px 0;
    background-color: var(--light);
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Empreendimento Details */
.empreendimento-details {
    padding: 50px 0;
}

.details-container {
    display: flex;
    gap: 50px;
}

.details-content {
    flex: 2;
}

.details-content h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.details-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
}

.details-sidebar {
    flex: 1;
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
}

.sidebar-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-form .form-group {
    margin-bottom: 20px;
}

.sidebar-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark);
}

.sidebar-form input,
.sidebar-form textarea,
.sidebar-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    resize: none;
}

.sidebar-form button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sidebar-form button:hover {
    background-color: var(--accent);
}

.sidebar-contact {
    margin-top: 30px;
}

.sidebar-contact h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item-home i {
    color: #fff !important;
}

.contact-item i {
    color: var(--primary);
}

/* Location */
.empreendimento-location {
    padding: 50px 0;
    background-color: var(--light);
}

.location-title {
    text-align: center;
    margin-bottom: 40px;
}

.location-title h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.location-container {
    display: flex;
    gap: 30px;
}

.location-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.location-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-features {
    margin-top: 30px;
}

.location-features h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.location-features ul {
    list-style: none;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.location-features i {
    color: var(--primary);
}









/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Gallery Grid Improvements */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    #lightboxImage {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        padding: 8px 12px;
        font-size: 16px;
    }
}