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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #ffd700;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    max-height: 90px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Estilo para links da logo */
a .logo {
    display: block;
    text-decoration: none;
}

a:hover .logo {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.cta-header {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4e, #b8860b, #daa520, #ffd700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite, fadeInUp 1.5s ease-out;
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.about {
    padding: 5rem 2rem;
    background: white;
}

.about-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.about-grid-mission {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card-mission {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.about-card-mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card-icon {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-card-icon i {
    font-size: 2.5rem;
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.about-card-mission h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-card-mission p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem;
    border-radius: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #ffd700;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sustainability {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sustainability-content {
    text-align: center;
    margin-bottom: 3rem;
}

.sustainability-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
}

.sustainability-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 2px;
}

.sustainability-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sustainability-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.sustainability-item:hover {
    transform: translateY(-5px);
    border-color: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.sustainability-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.sustainability-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sustainability-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.properties {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.property-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: rotate(3deg);
}

.badge-ready {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.badge-delivery {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.property-image {
    height: 250px;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 3rem;
}

.property-content {
    padding: 2rem;
}

.property-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.property-location {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.property-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.property-feature i {
    color: #ffd700;
}

.property-button {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.property-button:hover {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.contact {
    padding: 5rem 2rem;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.contact-map {
    height: 400px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #ffd700;
}

.footer p {
    margin-bottom: 0.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #ffd700;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #1a1a1a;
}

/* --- Menu Mobile --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: right 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
}

.mobile-logo {
    max-height: 60px;
}

.close-menu {
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.close-menu span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.close-menu span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: #ffd700;
    transform: translateX(10px);
}

.mobile-whatsapp {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    margin-top: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-whatsapp:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-whatsapp i {
    margin-right: 0.5rem;
}

/* --- Technology Section --- */
.technology {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10101e 0%, #1a1a2e 100%);
    color: white;
    overflow-x: hidden;
    width: 100%;
}
.technology .section-title {
    color: white;
    text-shadow: 0 0 15px rgba(17, 137, 255, 0.4);
}
.technology .section-title::after {
    background: linear-gradient(45deg, #1189ff, #6f42c1);
}
.technology-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}
.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}
.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.tech-card-icon i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(45deg, #1189ff, #6f42c1, #d629b3);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background-clip: text;
}
.tech-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}
.tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0c4de;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* --- Touch Experience --- */
button, a, .nav-link, .cta-header, .cta-button, .property-button, .whatsapp-button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* --- Botão Voltar ao Topo --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* --- Media Queries --- */

/* Telas de Tablet (<= 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-grid-mission {
        grid-template-columns: 1fr;
    }

    .about-stats-container,
    .sustainability-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-container {
        padding: 2rem;
    }
}

/* Telas de Tablet Menores e Celulares em Paisagem (<= 768px) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        max-height: 70px;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    #hamburger-menu {
        display: flex !important;
    }
    
    .hero {
        margin-top: 90px;
        height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about, .sustainability, .properties, .contact, .technology {
        padding: 3rem 1rem;
    }
    
    .about-content,
    .contact-content,
    .properties-grid,
    .about-stats-container,
    .sustainability-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h3,
    .sustainability-text h3,
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .about-text p,
    .sustainability-text p {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .sustainability-item {
        padding: 1.5rem;
    }
    
    .sustainability-item i {
        font-size: 2rem;
    }
    
    .sustainability-item h4 {
        font-size: 1.1rem;
    }
    
    .sustainability-item p {
        font-size: 0.9rem;
    }
    
    .property-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .property-content {
        padding: 1.5rem;
    }
    
    .property-title {
        font-size: 1.3rem;
    }
    
    .property-price {
        font-size: 1.5rem;
    }
    
    .property-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .property-feature {
        font-size: 0.85rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-item {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        width: 25px;
    }
    
    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-content h3 {
        font-size: 1.1rem;
    }
    
    .modal-content p, .modal-content li {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 1.5rem 0.5rem;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}

/* Telas de Celular (<= 480px) */
@media (max-width: 480px) {
    .logo {
        max-height: 60px;
    }
    
    .mobile-menu-content {
        width: 280px;
    }
    
    .hero {
        margin-top: 80px;
        height: 70vh;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about, .sustainability, .properties, .contact, .technology {
        padding: 2rem 1rem;
    }
    
    .about-content,
    .sustainability-grid {
        gap: 1.5rem;
    }
    
    .about-text h3,
    .sustainability-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p,
    .sustainability-text p {
        font-size: 0.95rem;
    }
    
    .sustainability-item {
        padding: 1.2rem;
    }
    
    .sustainability-item i {
        font-size: 1.8rem;
    }
    
    .sustainability-item h4 {
        font-size: 1rem;
    }
    
    .sustainability-item p {
        font-size: 0.85rem;
    }
    
    .properties-grid {
        gap: 2rem;
    }
    
    .property-card {
        margin: 0;
    }
    
    .property-content {
        padding: 1.2rem;
    }
    
    .property-title {
        font-size: 1.2rem;
    }
    
    .property-price {
        font-size: 1.3rem;
    }
    
    .property-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .property-feature {
        font-size: 0.8rem;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 20px;
    }
    
    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
    
    .contact-map {
        height: 250px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
        width: 98%;
        max-height: 90vh;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-content h3 {
        font-size: 1.1rem;
    }
    
    .modal-content p, .modal-content li {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
}

/* Telas de Celular Pequenas (<= 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-text h3,
    .sustainability-text h3,
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .property-title {
        font-size: 1.1rem;
    }
    
    .property-price {
        font-size: 1.2rem;
    }
}