/* ============================================
   LAYOUT UPONLINE APLICADO À IMOBILIÁRIA
   Mantém todo conteúdo com visual moderno
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores UPONLINE */
    --primary: hsl(190, 90%, 50%); /* Cyan brilhante */
    --primary-dark: hsl(190, 90%, 40%);
    --accent: hsl(45, 100%, 55%); /* Amarelo */
    --background: hsl(220, 25%, 3%); /* Escuro */
    --foreground: hsl(210, 40%, 98%); /* Branco claro */
    --card: hsl(220, 20%, 6%);
    --card-foreground: hsl(210, 40%, 98%);
    --muted: hsl(220, 15%, 15%);
    --muted-foreground: hsl(215, 20%, 65%);
    --border: hsl(220, 15%, 15%);
    --input: hsl(220, 15%, 15%);
    
    /* Cores para compatibilidade */
    --primary-color: hsl(190, 90%, 50%);
    --primary-dark: hsl(190, 90%, 40%);
    --secondary-color: hsl(210, 100%, 60%);
    --text-dark: hsl(210, 40%, 98%);
    --text-gray: hsl(215, 20%, 65%);
    --bg-light: hsl(220, 20%, 8%);
    --border-color: hsl(220, 15%, 15%);
    
    /* Sombras e efeitos */
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-primary: 0 0 40px hsl(190 90% 50% / 0.3);
    
    /* Gradientes UPONLINE */
    --gradient-primary: linear-gradient(135deg, hsl(190, 90%, 50%), hsl(210, 100%, 60%));
    --gradient-hero: linear-gradient(180deg, hsl(220, 25%, 3%) 0%, hsl(220, 30%, 8%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(220, 20%, 8%) 0%, hsl(220, 20%, 5%) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image: radial-gradient(ellipse at center, hsl(220 25% 8%) 0%, transparent 60%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Estilo UPONLINE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: hsl(220, 20%, 6%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 100px;
    height: auto;
    width: auto;
    display: block;
    filter: brightness(1.1);
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--foreground);
    cursor: pointer;
}

/* Buttons - Estilo UPONLINE */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background);
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px hsl(190 90% 50% / 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse-glow 2s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--background);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--glow-primary);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 40px hsl(190 90% 50% / 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 60px hsl(190 90% 50% / 0.5);
    }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 12px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 998;
    border-top: 1px solid var(--border);
}

/* Hero - Estilo UPONLINE */
.hero {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    width: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-person-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 600px;
}

.hero-mobile-image {
    display: none !important;
}

.hero-desktop-image {
    display: block !important;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 2;
}

.hero-cta-button {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    width: auto;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.hero-note i {
    color: var(--primary);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Apresentação Section */
.apresentacao-section {
    padding: 100px 0;
    background: var(--card);
    position: relative;
}

.apresentacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, hsl(190 90% 50% / 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.apresentacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apresentacao-video {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding: 0.75rem;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s;
}

.video-wrapper:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.video-wrapper:hover::before {
    opacity: 0.6;
}


.video-player {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
    background: linear-gradient(135deg, hsl(220 25% 15%) 0%, hsl(220 25% 10%) 100%);
    outline: none;
    aspect-ratio: 16/9;
    position: relative;
    z-index: 1;
}

.video-player[poster] {
    background: linear-gradient(135deg, hsl(220 25% 15%) 0%, hsl(220 25% 10%) 100%);
}

.video-player:not([poster]) {
    background: linear-gradient(135deg, hsl(220 25% 15%) 0%, hsl(220 25% 10%) 100%);
}

.video-player::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.video-player::-webkit-media-controls-play-button,
.video-player::-webkit-media-controls-volume-slider,
.video-player::-webkit-media-controls-timeline {
    filter: invert(1);
}

.apresentacao-texto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apresentacao-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--foreground);
    margin: 0;
}

.apresentacao-titulo .text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.apresentacao-descricao {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin: 0;
}

.apresentacao-descricao strong {
    color: var(--foreground);
    font-weight: 600;
}

.apresentacao-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apresentacao-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}

.apresentacao-note i {
    color: var(--primary);
}

/* Exemplos Section */
.exemplos-section {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.exemplos-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--muted);
}

.exemplos-scroll::-webkit-scrollbar {
    height: 8px;
}

.exemplos-scroll::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 4px;
}

.exemplos-scroll::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

.exemplo-image-item {
    flex-shrink: 0;
    width: 450px;
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid var(--border);
    background: var(--card);
    position: relative;
}

.exemplo-image-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.exemplo-image-item:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
}

.exemplo-image-item:hover::before {
    opacity: 0.1;
}

.exemplo-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Clientes Section */
.clientes-section {
    padding: 100px 0;
    background: var(--card);
    position: relative;
}

.clientes-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--muted);
}

.clientes-grid::-webkit-scrollbar {
    height: 8px;
}

.clientes-grid::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 4px;
}

.clientes-grid::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

.cliente-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 260px;
    min-height: 340px;
}

.cliente-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
}

.cliente-foto {
    width: 130px;
    height: 130px;
    border-radius: 0.75rem;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--glow-primary);
    background: var(--muted);
    padding: 3px;
}

.cliente-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}

.cliente-depoimento {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.cliente-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.cliente-info p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* Quiz Section */
.quiz-section {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.quiz-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.quiz-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.quiz-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quiz-subtitle {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    background: var(--muted);
    color: var(--foreground);
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(190 90% 50% / 0.2);
    background: var(--card);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--foreground);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkmark {
    display: none;
}

.form-note {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-note i {
    color: var(--primary);
}

.form-error,
.form-success {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-error {
    background: hsl(0, 50%, 15%);
    border: 1px solid hsl(0, 60%, 30%);
    color: hsl(0, 80%, 70%);
}

.form-success {
    background: hsl(120, 30%, 15%);
    border: 1px solid hsl(120, 40%, 30%);
    color: hsl(120, 70%, 60%);
}


/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--background);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 0 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--gradient-hero);
    border-top: 1px solid var(--border);
    color: var(--foreground);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 700;
}

.footer-section p {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-image: url('../images/hero-mobile.jpg');
        min-height: 600px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--card);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .hero {
        padding: 80px 0;
    }
    
    .hero .container {
        padding: 0 1.5rem;
    }
    
    .hero-image-wrapper {
        border-radius: 1rem;
    }
    
    .hero-desktop-image {
        display: none !important;
    }
    
    .hero-mobile-image {
        display: block !important;
        min-height: 500px;
        object-position: center;
    }
    
    .hero-image-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-cta-button {
        width: 100%;
    }

    .logo-img {
        max-height: 55px;
    }

    .header-content {
        padding: 0.75rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .apresentacao-section {
        padding: 60px 0;
    }
    
    .apresentacao-content {
        gap: 2rem;
    }
    
    .apresentacao-titulo {
        font-size: 1.75rem;
    }
    
    .video-wrapper {
        min-height: 250px;
    }
    

    .apresentacao-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .apresentacao-titulo {
        font-size: 2rem;
    }
    
    .apresentacao-descricao {
        font-size: 1rem;
    }
    
    .video-wrapper {
        padding: 0.5rem;
        min-height: 300px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
    
    .logo-img {
        max-height: 70px;
    }

    .exemplos-scroll {
        gap: 1rem;
    }

    .exemplo-image-item {
        width: 300px;
        height: 225px;
    }

    .clientes-grid {
        gap: 1rem;
    }

    .cliente-card {
        width: 220px;
        min-height: 300px;
        padding: 1.25rem;
    }

    .cliente-foto {
        width: 110px;
        height: 110px;
    }

    .quiz-wrapper {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .how-it-works,
    .exemplos-section,
    .clientes-section,
    .quiz-section,
    .trust-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero .container {
        padding: 0 1rem;
    }
    
    .hero-image-wrapper {
        border-radius: 0.75rem;
    }
    
    .hero-desktop-image {
        display: none;
    }
    
    .hero-mobile-image {
        display: block;
        min-height: 450px;
        object-position: center;
    }
    
    .hero-image-overlay {
        padding: 1.5rem 1rem 1rem;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    }
    
    .hero-cta-button {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .hero-note {
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .logo-img {
        max-height: 55px;
    }
    
    .apresentacao-section {
        padding: 50px 0;
    }
    
    .apresentacao-titulo {
        font-size: 1.5rem;
    }
    
    .apresentacao-descricao {
        font-size: 0.95rem;
    }

    .header-content {
        padding: 0.65rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hidden */
.hidden {
    display: none !important;
}
