:root {
    --verde-mata: #1F3D2B;
    --verde-oliva: #4F6B55;
    --verde-claro: #A9C3B0;
    --bege-natural: #E8E4DA;
    --off-white: #F6F6F2;
    --cinza-claro: #D6D6D2;
    --marrom: #6B4E3D;
    --cinza-grafite: #2E2E2E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--cinza-grafite);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--verde-mata);
    letter-spacing: 0.5px;
}

.cta-button-header {
    background: var(--verde-mata);
    color: var(--off-white);
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-button-header:hover {
    background: var(--verde-oliva);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 61, 43, 0.3);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-image:
        url('./img/hero.png');
        
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.logo img {
    max-height: 58px;
    width: auto;
    height: auto;
    display: block;
}

/* Tablets */
@media (max-width: 1024px) {
    .logo img {
        max-height: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        max-height: 50px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .logo img {
        max-height: 50px;
    }
}
    /* Desktop (padrão) */
.cta-button-header {
    display: inline-flex;
}

/* Mobile e tablet */
@media (max-width: 768px) {
    .cta-button-header {
        display: none;
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 61, 43, 0.5);
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--verde-claro);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--bege-natural);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(30px); }
    50% { transform: translateY(-60px) translateX(-20px); }
    75% { transform: translateY(-30px) translateX(-40px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.cta-button-primary {
    background: var(--off-white);
    color: var(--verde-mata);
    border: 2px solid transparent;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.cta-button-primary:hover {
    background: transparent;
    color: var(--off-white);
    border-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--off-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--off-white);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--verde-oliva);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--verde-mata);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--cinza-grafite);
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.8;
}

.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-grafite);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 0.5rem;
}

.highlight-label {
    display: block;
    font-size: 0.9rem;
    color: var(--verde-oliva);
    font-weight: 500;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.location {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--verde-claro);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.3rem;
    color: var(--verde-mata);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-card p {
    color: var(--cinza-grafite);
    line-height: 1.6;
}

.amenities {
    background: var(--bege-natural);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover img {
    transform: scale(1.1);
}

.amenity-content {
    padding: 2rem;
}

.amenity-content h3 {
    font-size: 1.3rem;
    color: var(--verde-mata);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.amenity-content p {
    color: var(--cinza-grafite);
    line-height: 1.6;
}

.floorplans {
    background: white;
}

.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.floorplan-card {
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.floorplan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.floorplan-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floorplan-card:hover img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 2rem;
}

.floorplan-info h3 {
    font-size: 1.5rem;
    color: var(--verde-mata);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.floorplan-info ul {
    list-style: none;
}

.floorplan-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cinza-claro);
    color: var(--cinza-grafite);
    position: relative;
    padding-left: 1.5rem;
}

.floorplan-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-oliva);
    font-weight: 600;
}

.floorplan-info li:last-child {
    border-bottom: none;
}

.gallery {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-grafite);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--cinza-grafite);
}

.info-icon {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--cinza-claro);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--cinza-grafite);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--verde-oliva);
    box-shadow: 0 0 0 3px rgba(79, 107, 85, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 1rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--cinza-grafite);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--verde-mata);
    text-decoration: underline;
    cursor: pointer;
}

.form-disclaimer a:hover {
    color: var(--verde-oliva);
}

.footer {
    background: var(--verde-mata);
    color: var(--off-white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-legal {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--verde-mata);
    margin-bottom: 2rem;
}

.modal-content h3 {
    font-size: 1.2rem;
    color: var(--verde-oliva);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-content p,
.modal-content li {
    line-height: 1.8;
    color: var(--cinza-grafite);
    margin-bottom: 1rem;
}

.modal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--cinza-grafite);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bege-natural);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .floorplans-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .floorplans-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

.floorplans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floorplan-card {
    display: none;
    max-width: 900px;
    width: 100%;
}

.floorplan-card.active {
    display: block;
}

.floorplan-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
}
.floorplan-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.floorplan-tab {
    padding: 10px 18px;
    border: 1px solid #1F3D2B;
    background: transparent;
    color: #1F3D2B;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.floorplan-tab:hover {
    background: rgba(31, 61, 43, 0.08);
}

.floorplan-tab.active {
    background: #1F3D2B;
    color: #ffffff;
}
.floorplans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floorplan-card {
    display: none;
    max-width: 800px;
    width: 100%;
}

.floorplan-card.active {
    display: block;
}

.floorplan-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
}
@media (max-width: 768px) {
    .floorplan-card {
        max-width: 100%;
    }
}

.footer {
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-legal p {
    margin: 0;
}

.contact {
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
