/* FlowCredi Colors and Base Styles */
:root {
    --primary-blue: #003366;
    --secondary-blue: #0066cc;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    hyphens: auto;
}

/* Responsive Images and Media */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

/* Prevent horizontal scroll on small devices */
html {
    overflow-x: hidden;
}

/* Container Responsive */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, padding 0.2s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

/* Header expandido ganha um pequeno padding interno para evitar salto visual */
.header.expanded {
    padding-top: 2px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sem logo no header */

.nav-brand .brand-text h1 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.nav-brand .brand-text span {
    color: var(--secondary-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Main Content - o deslocamento superior será definido dinamicamente via JS conforme a altura do header */
.main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 102, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%),
        url('./images/condominio-luxo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.32rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-text {
    font-size: 0.99rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.21rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h3 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.21rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Paulo Section */
.about-paulo {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.21rem;
    line-height: 1.8;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item .stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary-blue);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.99rem;
    color: var(--text-light);
    font-weight: 500;
}

.profile-photo {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0066cc;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    margin: 0 auto 1rem;
    display: block;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.profile-info .company-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 25px;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 25px;
    border: 3px solid #f0f0f0;
}

.profile-info h4 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}

.profile-info p {
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.65rem;
}

.benefit-item h4 {
    font-size: 1.43rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pre-Analysis Form */
.pre-analise {
    background: var(--light-gray);
    padding: 5rem 0;
}

.pre-analise-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.form-section {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.form-section.full-width {
    grid-column: 1 / -1;
}

.form-section h4 {
    color: var(--primary-blue);
    font-size: 1.32rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-blue);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.045rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.32rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Properties Gallery */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.property-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 51, 102, 0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.property-overlay h4 {
    font-size: 1.43rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-overlay p {
    font-size: 1.045rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-cta p {
    font-size: 1.32rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

/* Carousel container replacing grid layout */
.testimonials-carousel {
    position: relative;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-viewport {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.testimonial-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    min-width: clamp(260px, 80%, 520px);
    flex: 0 0 clamp(260px, 80%, 520px);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.21rem;
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.99rem;
    display: block;
    margin-top: 0.3rem;
}

.carousel-btn {
    background: var(--white);
    border: 1px solid #e0e0e0;
    color: var(--primary-blue);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.carousel-btn:active {
    transform: translateY(0);
}

.carousel-btn i { font-size: 1rem; }

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.contact-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.32rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.whatsapp-button {
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.32rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--secondary-blue);
    padding-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.contact-item i {
    color: var(--secondary-blue);
    width: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item span {
    word-break: break-word;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    max-width: 800px;
    margin: 0 auto;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* FlowCredi Floating Icon - inferior esquerdo */
.flow-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
}

.flow-float-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    /* Tenta neutralizar fundo branco em JPEGs: */
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.flow-float:hover .flow-float-img {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .flow-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .flow-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        left: 12px;
    }
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero h2 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-photo {
        padding: 1.5rem;
        margin: 1rem auto;
        max-width: 350px;
    }
    
    .profile-img {
        width: 160px;
        height: 160px;
        margin-bottom: 0.8rem;
    }
    
    .profile-info {
        gap: 0.4rem;
    }
    
    .profile-info .company-logo {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-bottom: 0.4rem;
    }
    
    .profile-info h4 {
        font-size: 1.6rem;
        margin-bottom: 0.1rem;
    }
    
    .profile-info p {
        font-size: 1.1rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0.5rem 1rem;
    }
    
    .nav-brand .brand-logo {
        width: 140px;
        height: 140px;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .nav-brand .brand-text h1 {
        font-size: 1.5rem;
    }
    
    /* deslocamento da main é calculado via JS */
    .main { margin-top: 0; }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-photo {
        padding: 1.5rem;
        margin: 1rem auto;
        max-width: 300px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-img {
        width: 140px;
        height: 140px;
        margin-bottom: 0.6rem;
    }
    
    .profile-info {
        gap: 0.3rem;
    }
    
    .profile-info .company-logo {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-bottom: 0.3rem;
    }
    
    .profile-info h4 {
        font-size: 1.4rem;
        margin-bottom: 0.1rem;
    }
    
    .profile-info p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pre-analise-form {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Ajustes do carrossel de depoimentos no mobile */
    .testimonials-carousel { gap: 0.5rem; }
    .carousel-btn { width: 36px; height: 36px; }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section {
        min-height: unset;
    }
    
    section h3 {
        font-size: 2.2rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.43rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2rem 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-badge {
        min-width: 160px;
        padding: 0.8rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h3 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .profile-photo {
        padding: 1rem;
        margin: 0.5rem auto;
        max-width: 280px;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .profile-info {
        gap: 0.2rem;
    }
    
    .profile-info .company-logo {
        width: 100%;
        height: auto;
        padding: 15px;
        margin-bottom: 0.2rem;
    }
    
    .profile-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.05rem;
    }
    
    .profile-info p {
        font-size: 0.95rem;
    }
    
    .form-section {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .pre-analise-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .form-grid {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .property-card {
        height: 250px;
    }
    
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
