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

    body {
    font-family: "Montserrat", sans-serif;
    color: #000000;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    }

    .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    }

    h1,
    h2,
    h3,
    h4 {
    font-family: "Montserrat", serif;
    font-weight: 400;
    }

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

    a {
    text-decoration: none;
    color: inherit;
    }

    ul {
    list-style: none;
    }

    /* Buttons */
    .btn-primary {
    background-color: #0c479e;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    }

    .btn-primary:hover {
    background-color: #0a3a80;
    transform: translateY(-2px);
    }

    .btn-form {
    background-color: #0c479e;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .btn-form:hover {
    background-color: #0a3a80;
    }

    .btn-enviar {
    background-color: #0c479e;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .btn-enviar:hover {
    background-color: #0a3a80;
    }

    .btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0c479e;
    border: 2px solid #0c479e;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    }

    .btn-secondary:hover {
    background-color: #0c479e;
    color: #ffffff;
    }

    /* Header */
    header {
    background: linear-gradient(to right, #0c479e, #1a5cb8);
    color: #ffffff;
    padding: 11px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

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

.logo img {
    height: 5rem;  /* Ideal: entre 40px e 60px */
    width: auto;
    object-fit: contain;
    padding-top: 1rem;
}


    nav ul {
    display: flex;
    }

    nav ul li {
    margin-left: 30px;
    }

    nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
    }

    nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    }


    /* Menu hamburguer */
    .menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
    }

/* Responsivo */
    @media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .cta-button {
        display: none;
    }
    }


    /* Hero Section */
    .hero {
    background-image: url("./img/FACHADA\ DO\ ALTO.jpeg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 150px 0 80px;
    position: relative;
    }

    .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    }

    .hero .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .hero-content {
    width: 50%;
    }

    .hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
    }

    .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 400;
    }

    .hero-features {
    display: flex;
    align-items: center;
    margin-top: 40px;
    }

    .metro-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    }

    .metro-icon img {
    width: 50px;
    }

    .features-text p {
    margin-bottom: 5px;
    font-weight: 600;
    }

    .form-container {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    color: #000000;
    }

    .form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #0c479e;
    }

    .form-group {
    margin-bottom: 15px;
    }

    .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    }

    .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    }

    /* Lazer Urbano Section */
    .lazer-urbano {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a3b80 0%, #0c479e 50%, #1a5cb8 100%);
    color: #ffffff;
    }

    .lazer-urbano h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    }

    .towers-container {
    display: flex;
    gap: 2rem;
    }

    .tower {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    }

    

    .tower-logo {
    text-align: center;
    }

    .tower-logo img {
        width: 11.5rem;
    }

    .tower-logo h3 {
    font-size: 2rem;
    }

    .tower-logo p {
    font-size: 2rem;
    letter-spacing: 1px;
    }

    .tower-logo span {
    font-style: italic;
    }

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

    .tower-title {
    font-weight: 700;
    }

    .tower-dorms {
    font-size: 1.5rem;
    font-weight: 600;
    }

    .tower-size {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    }

    .tower-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 1.5rem;
    }

    .tower-image {
    position: relative;
    max-width: 35rem;
    margin: 0 auto;
    }

    .tower-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
    }

    .image-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    }

    .image-stamp span {
    font-size: 0.7rem;
    color: #0c479e;
    font-weight: 600;
    }

    .towers-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    }

    .btn2 {
    background-color: #0c9e35;
    color: #ffffff;
    padding: 15px 5px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 70%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    }

.tower-logo h2,
.tower-logo p,
.tower-logo span {
    margin: 0;
    padding: 0;
    }

    .title1 {
        font-weight: 600;
    }


    .breve-lancamento {
    padding: 80px 0;
    background-image: url("./img/Bom Retiro.png");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1; /* Certifique-se de que esta seção esteja acima do plano de fundo */
    overflow: hidden;
    }

    .breve-lancamento::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Escurecimento */
    z-index: 0; /* Fica atrás do conteúdo */
    }

    .breve-lancamento .container {
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima do overlay escuro */
    }



    .lancamento-right {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(10, 59, 128, 0.9) 0%,
        rgba(12, 71, 158, 0.9) 50%,
        rgba(26, 92, 184, 0.9) 100%
    );
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .project-info {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    }

    .project-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    }

    .project-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
    }

    .towers-details {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    }

    .tower-detail {
    width: 48%;
    }

    .tower-detail h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    }

    .tower-detail p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    }


/* Plantas Section com Carrossel */
    .plantas {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a3b80 0%, #0c479e 50%, #1a5cb8 100%);
    color: #ffffff;
    }

    .plantas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    }

    .plantas-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 60px;
    padding: 0 20px;
    scroll-behavior: smooth;
    }

    .planta {
    flex: 0 0 auto;
    width: 500px;
    scroll-snap-align: start;
    }

    .planta-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .planta-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    }

    .planta:hover .planta-image img {
    transform: scale(1.03);
    }
    


    /* Navegação */
    .plantas-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    }

    .plantas-nav button {
    background-color: #ffffff;
    color: #0a3b80;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    }

    .plantas-nav button:hover {
    background-color: #d4e1f5;
    }

    /* Modal */
    .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
    }

    .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease-in-out;
    border-radius: 8px;
    }

    .modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    }

    /* Novo disclaimer global */
    .planta-disclaimer-global {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 0.9rem;
    opacity: 0.75;
    text-align: center;
    line-height: 1.5;
    padding: 0 20px;
    }

    @keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
    }

    @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
    }

    /* Responsividade */
    @media (max-width: 768px) {
    .planta {
        width: 90vw;
    }

    .plantas-carousel {
        gap: 30px;
    }

    .planta-disclaimer-global {
    font-size: 0.8rem;
    padding: 0 10px;
    }
    }


    /* Localização Section */
    .localizacao {
    padding: 80px 0;
    background-image: url(./img/pinacoteca.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
    z-index: 1; /* conteúdo acima do overlay */
    overflow: hidden;
    }

    .localizacao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurecimento */
    z-index: 0; /* Fica atrás do conteúdo */
    }

    .localizacao .container {
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima do overlay escuro */
    }


    .localizacao h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    }

    .localizacao-content {
    display: flex;
    justify-content: space-between;
    }

    .localizacao-map {
    width: 48%;
    }

    .localizacao-info {
    width: 48%;
    background-color: #f5f0ed;
    color: #000000;
    padding: 30px;
    border-radius: 10px;
    }

    .localizacao-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #0c479e;
    }

    .localizacao-description {
    margin-bottom: 30px;
    text-align: center;
    }

    .localizacao-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    }

    .localizacao-item {
    display: flex;
    align-items: center;
    }

    .localizacao-item .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    }

    .localizacao-note {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
    }

    /* Responsividade da seção Localização */
@media (max-width: 768px) {
    .localizacao-content {
        flex-direction: column;
        gap: 30px;
    }

    .localizacao-map,
    .localizacao-info {
        width: 100%;
    }

    .localizacao-map iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .localizacao-items {
        grid-template-columns: 1fr;
    }
    }


    /* Lazer Section */
    .lazer {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a3b80 0%, #0c479e 50%, #1a5cb8 100%);
    color: #ffffff;
    }

    .lazer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    }

    /* Carousel Styles */
    .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    }

    .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* 3 slides */
    }

    .carousel-slide {
    width: 33.333%; /* 1/3 of total width */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 15px;
    }

    .lazer-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    }

    .lazer-item:hover {
    transform: scale(1.03);
    }

    .lazer-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    }

    .lazer-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    }

    .carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    }

    .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    .carousel-dot.active {
    background-color: #ffffff;
    }

    /* Contato Section */
    .contato {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    }

    .contato h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #0c479e;
    }

    .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    }

    .contato .form-group {
    flex: 1;
    margin: 0 10px;
    }

    .contato input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    }

    /* Footer */
    

    /* Footer */
    .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, #0c479e, #1a5cb8);
    color: #ffffff;
    height: auto;
    padding: 2rem 1rem;
    text-align: center;
    flex-wrap: wrap;
    }

    .footer-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    }

    .footer-credits img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.bom img {
    width: 10rem;
    height: auto;
}

@media (max-width: 1440px) {
    .footer-credits img {
        max-width: 200px;
    }
    }

    @media (max-width: 1024px) {
    .footer-credits img {
        max-width: 180px;
    }
    }


    /* Melhor responsividade */
    @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-credits,
    .footer-logo {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-credits img,
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    }



    /* Responsive Styles */
    @media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }


    .hero-content,
    .form-container {
        width: 100%;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .towers-container,
    .breve-lancamento .container,
    .plantas .container,
    .localizacao-content {
        flex-direction: column;
    }

    .tower,
    .lancamento-left,
    .lancamento-right,
    .planta,
    .localizacao-map,
    .localizacao-info {
        width: 100%;
        margin-bottom: 30px;
    }

    .towers-details {
        flex-direction: column;
    }

    .tower-detail {
        width: 100%;
        margin-bottom: 20px;
    }

    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contato .form-row {
        flex-direction: column;
    }

    .contato .form-group {
        width: 100%;
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-info,
    .footer-credits {
        margin-bottom: 20px;
    }

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

    @media (max-width: 768px) {
    .towers-details {
        flex-direction: column;
    }

    .tower-detail {
        width: 100%;
        margin-bottom: 30px;
    }

    .lancamento-right {
        padding: 25px;
    }

    .project-info h3 {
        font-size: 1.6rem;
    }
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .cta-button {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }

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

    .apartamento-details {
        flex-wrap: wrap;
    }

    .detail-item {
        width: 33%;
        margin-bottom: 10px;
    }
    }

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

        @media (max-width: 768px) {
    .logo img {
        height: 3.5rem;
        padding-top: 0.5rem;
    }

    .menu-toggle {
        display: block;
        font-size: 32px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        background-color: #0c479e;
        padding: 10px 20px;
        border-radius: 6px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .cta-button {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .cta-button .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    }

