/* ============================================
   BERGAMO RESIDENCE - MODERN STYLESHEET
   Paleta: #414140, #a79b88, #d9dad9
   ============================================ */

/* ============================================
   VARIABLES
   ============================================ */
:root {
    --dark: #414140;
    --beige: #a79b88;
    --light: #d9dad9;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid var(--light);
    transition: var(--transition);
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -1px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--beige);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transform: scale(1.05);
    filter: brightness(0.72);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    color: var(--white);
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--beige);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--light);
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeIn 1s ease 0.6s both;
}

.hero-proof {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-proof span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 16px;
    border-radius: 14px;
    color: white;
    font-size: .9rem;
    backdrop-filter: blur(10px);
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--beige);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(167, 155, 136, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--light);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--beige);
    color: var(--white);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 8rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--dark);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.about-image {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--beige);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.highlight {
    background: var(--light);
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    font-weight: 500;
}

.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--beige);
}

/* ============================================
   TIPOLOGIAS SECTION
   ============================================ */
.tipologias {
    background: var(--light);
}

.tipologias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.tipo-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.tipo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tipo-header {
    height: 300px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    transition: transform .8s ease;
}

.tipo-card:hover .tipo-header {
    transform: scale(1.06);
}

.tipo-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--beige);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.tipo-body {
    padding: 3rem;
}

.tipo-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.tipo-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
    font-size: 0.95rem;
}

.tipo-spec-label {
    color: var(--dark);
    font-weight: 300;
}

.tipo-spec-value {
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.diferencial {
    text-align: left;
}

.diferencial-number {
    font-size: 1rem;
    color: var(--beige);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.diferencial h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.diferencial p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   GALLERY PREMIUM
   ============================================ */
.gallery-section{
    padding: 8rem 3rem;
    background: #f7f7f7;
}

.gallery-header{
    max-width: 900px;
    margin-bottom: 5rem;
}

.gallery-subtitle{
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(65,65,64,.75);
    max-width: 700px;
}

.gallery-grid{
    display:grid;
    grid-template-columns: 1.6fr .9fr;
    gap:24px;
    align-items:stretch;
}

.gallery-main{
    position:relative;
    overflow:hidden;
    min-height:750px;
}

.gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform 1.4s ease;
}

.gallery-main:hover img{
    transform:scale(1.06);
}

.gallery-side{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:24px;
}

.gallery-card{
    overflow:hidden;
    position:relative;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform 1.2s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-main::after,
.gallery-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );
}

@media(max-width: 1024px){

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

    .gallery-main{
        min-height:500px;
    }

    .gallery-side{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }
}

@media(max-width:768px){

    .gallery-section{
        padding:5rem 1.5rem;
    }

    .gallery-side{
        grid-template-columns:1fr;
    }
}

/* ============================================
   INVESTMENT SECTION
   ============================================ */
.investment-section{
    position:relative;
    padding:10rem 3rem;
    background-image:url('public/images/Apto/Piscina-A-03.jpg');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.investment-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.68);
}

.investment-content{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:0 auto;
    color:white;
}

.investment-content .section-title{
    color:white;
}

.investment-text{
    max-width:700px;
    line-height:1.9;
    font-size:1.1rem;
    color:rgba(255,255,255,.78);
    margin-top:2rem;
}

.investment-grid{
    margin-top:5rem;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.investment-card{
    padding:36px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    transition:all .4s ease;
}

.investment-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.investment-card strong{
    display:block;
    font-size:1.4rem;
    margin-bottom:12px;
}

.investment-card span{
    color:rgba(255,255,255,.72);
    line-height:1.6;
}

.premium-form{
    max-width:560px;
    margin:5rem 0 0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.premium-form h3{
    font-size:2rem;
    color:white;
    margin-bottom:8px;
}

.premium-form p{
    color:rgba(255,255,255,.7);
    margin-bottom:24px;
}

.premium-form input{
    height:72px;
    padding:0 24px;
    border:none;
    background:white;
    font-size:1rem;
    font-family:'Space Grotesk', sans-serif;
}

.premium-form button{
    height:72px;
    border:none;
    background:linear-gradient(
        135deg,
        #25D366,
        #1fa855
    );
    color:white;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    transition:.3s ease;
    letter-spacing:.5px;
}

.premium-form button:hover{
    transform:translateY(-3px);
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:2rem;
}

.brand-mark{
    width:46px;
    height:46px;
    border:1px solid rgba(65,65,64,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    letter-spacing:1px;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-text span{
    font-size:1rem;
    font-weight:700;
    letter-spacing:2px;
}

.brand-text small{
    margin-top:6px;
    font-size:.62rem;
    letter-spacing:3px;
    opacity:.55;
}

@media(max-width:1024px){

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

@media(max-width:768px){

    .investment-section{
        padding:6rem 1.5rem;
    }

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

/* ============================================
   LOCALIZAÇÃO SECTION
   ============================================ */
.localizacao {
    background: var(--dark);
    color: var(--white);
}

.localizacao .section-title {
    color: var(--white);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.map-container {
    height: 600px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--beige);
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 2;
}

.location-list {
    list-style: none;
}

.location-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
}

.location-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--beige);
    font-weight: 600;
}

/* ============================================
   PAGAMENTO SECTION
   ============================================ */
.pagamento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pagamento-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--light);
    transition: var(--transition);
}

.pagamento-card:hover {
    border-color: var(--beige);
    transform: translateY(-5px);
}

.pagamento-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.pagamento-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    background: var(--beige);
    color: var(--white);
}

.form-section .section-title {
    color: var(--white);
}

.form-container {
    max-width: 900px;
    margin: 4rem auto 0;
    background: var(--white);
    padding: 4rem;
    color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--light);
    background: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--beige);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    text-transform: none;
    font-weight: 300;
    letter-spacing: 0;
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-submit:hover {
    background: var(--beige);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(65, 65, 64, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 3rem 3rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.footer-text {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--beige);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.6;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 24px;
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #25D366, #1fa855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

.whatsapp-float img.whatsapp-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    padding: 14px 18px;
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -10px 40px rgba(0,0,0,.35);
}

.fixed-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.fixed-cta-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.fixed-cta-badge {
    color: #d4af37;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.fixed-cta-button {
    background: linear-gradient(135deg, #25D366, #1fa855);
    color: white;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: .5px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.fixed-cta-button:hover {
    transform: translateY(-2px);
}

.urgency-bar {
    width: 100%;
    overflow: hidden;
    background: #141414;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.urgency-track {
    white-space: nowrap;
    color: #d4af37;
    font-weight: 600;
    animation: scrollUrgency 22s linear infinite;
}

@keyframes scrollUrgency {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: 28px;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.25);
}

.stars {
    color: #d4af37;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.testimonial-card p {
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

.testimonial-author {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.testimonial-author span {
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.units-counter {
    position: fixed;
    left: 24px;
    bottom: 120px;
    z-index: 999;
    background: rgba(12,12,12,0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.units-counter strong {
    display: block;
}

.units-counter small {
    color: rgba(255,255,255,0.65);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 768px){
    .fixed-cta-content {
        flex-direction: column;
        align-items: stretch;
    }

    .fixed-cta-button {
        width: 100%;
        text-align: center;
    }

    .units-counter {
        display: none;
    }

    .whatsapp-float {
        width: 72px;
        height: 72px;
        font-size: 2rem;
        bottom: 120px;
    }
}

@media (min-width: 1024px) {
    .fixed-cta {
        display: none;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .section {
        padding: 6rem 2rem;
    }

    .about-grid,
    .tipologias-grid,
    .localizacao-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-title {
        font-size: 4rem;
    }

    .about-image {
        height: 500px;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .diferenciais-grid,
    .pagamento-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
