/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    padding-top: 80px;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    height: 80px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 220px 0 20px;
    gap: 40px;
}

.nav-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    transition: all 0.3s ease;
}

.logo-redonda {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

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

.logo-secundaria {
    height: 45px;
    border-radius: 50%;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

/* Botão CTA no header */
.navbar .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    background: transparent;
}

/* Cores da navegação inspiradas no site de referência */
.nav-inicio { background-color: #2563eb; }
.nav-servicos { background-color: #f59e0b; }
.nav-sobre { background-color: #8b5cf6; }
.nav-resultados { background-color: #10b981; }
.nav-contato { background-color: #ec4899; }

.nav-link:hover {
    transform: translateY(-2px);
    color: #d4af37;
    background: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('../images/20250616_173054.jpg') no-repeat center center;
    background-size: cover;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
    opacity: 0.8;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0.7) 30%, rgba(10, 10, 10, 0.2) 70%, transparent 100%);
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0;
    margin-left: 60px;
    padding: 60px 0;
    position: relative;
    z-index: 3;
    width: 48%;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.6rem;
    color: #e5e7eb;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-details {
    margin: 50px 0;
}

.hero-details p {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 300;
}



/* Botões CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    margin: 10px 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.cta-button.secondary {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #fbbf24;
    color: #000000;
}

/* Credenciais */
.credentials {
    background: #111111;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.credentials-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.credentials-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
}

.credentials-text {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.8;
}

/* Seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #d1d5db;
    margin-bottom: 60px;
}

/* Serviços */
.services {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #fbbf24;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    color: #d1d5db;
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sobre */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.about h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    color: #d1d5db;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.about-list li:before {
    content: '→';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-credentials {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid #333333;
}

.about-credentials h3 {
    color: #fbbf24;
    margin-bottom: 20px;
}

.about-credentials ul {
    list-style: none;
}

.about-credentials li {
    color: #d1d5db;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.about-credentials li:before {
    content: '•';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Resultados */
.results {
    padding: 100px 0;
    background: #111111;
}

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

.result-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.result-card h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.result-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Contato */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333333;
    height: fit-content;
}

.contact-info h3 {
    color: #fbbf24;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-item strong {
    color: #ffffff;
}

/* Formulário */
.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 10px;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 20px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer h3 {
    color: #fbbf24;
    margin-bottom: 15px;
}

.footer p {
    color: #d1d5db;
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .result-card,
    .contact-info,
    .contact-form {
        padding: 25px;
    }
}



/* Qualificações Acadêmicas */
.qualifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

/* Galeria de Diplomas - Design Simples */
.diplomas-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.diploma-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.diploma-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.diploma-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.diploma-info {
    padding: 20px;
    text-align: center;
    background: rgba(42, 42, 42, 0.9);
}

.diploma-info h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.diploma-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.qualification-logo {
    text-align: center;
    margin-top: 40px;
}

.circular-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circular-logo:hover {
    transform: scale(1.1);
}

/* Modal para visualização de diplomas */
.diploma-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.diploma-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.diploma-modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsividade para qualificações */
@media (max-width: 768px) {
    .diplomas-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diploma-item {
        margin: 0 10px;
    }
    
    .diploma-image {
        height: 200px;
    }
    
    .diploma-info {
        padding: 15px;
    }
    
    .circular-logo {
        width: 120px;
        height: 120px;
    }
}


/* Mantendo tom escuro original */
.services {
    background: url('../images/WhatsAppImage2025-09-08at12.44.30.jpeg');
    background-size: 40%;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    padding: 100px 0;
}

.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Seção de Atuação Profissional */
.professional-action {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/WhatsAppImage2025-09-08at12.44.30.jpeg');
    background-size: 35%;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
}

.professional-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.action-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.action-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.action-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 768px) {
    .action-content h2 {
        font-size: 2rem;
    }
    
    .action-content p {
        font-size: 1.1rem;
    }
    
    .action-highlights {
        grid-template-columns: 1fr;
    }
}


/* Marca d'água esotérica */
.watermark {
    position: relative;
}

.watermark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: url('../images/marca-dagua.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

/* Aplicar marca d'água em seções específicas */
.services.watermark::after,
.qualifications.watermark::after {
    opacity: 0.03;
    width: 250px;
    height: 250px;
}

.contact.watermark::after {
    opacity: 0.025;
    width: 220px;
    height: 220px;
}

/* Garantir que o conteúdo fique acima da marca d'água */
.watermark .container {
    position: relative;
    z-index: 2;
}


/* Nome do Escritório */
.escritorio-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.logo-escritorio {
    height: 80px;
    width: auto;
}

.escritorio-nome {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .escritorio-logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .escritorio-nome {
        font-size: 1.8rem;
        text-align: center;
    }
}


/* Seção de Diferenciais */
.differentials {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
}

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

.differential-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.differential-item:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.differential-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.differential-item h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.differential-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differential-item {
        padding: 30px 20px;
    }
}


/* Textos sobre imagens do Dr. Lucas - SEM overlay cobrindo o rosto */
.services .section-title,
.services h3,
.services p,
.services li {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    background: none;
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.professional-activity .section-title,
.professional-activity h3,
.professional-activity p,
.professional-activity li {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    background: none;
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}



/* ========================================
   RESPONSIVIDADE - MOBILE E TABLET
======================================== */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .hero-content {
        width: 55%;
        margin-left: 40px;
    }
    
    .logo-redonda {
        height: 150px;
        width: 150px;
    }
    
    .header {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
}

/* Tablets pequenos e smartphones grandes (481px - 768px) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 10px;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .navbar .cta-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .logo-redonda {
        height: 120px;
        width: 120px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-content {
        width: 90%;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    /* Remover cobertura escura - manter foto visível */
    .hero::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background-position: center top;
        /* Remover filtros escuros */
        filter: grayscale(100%) contrast(1.3) brightness(1.0);
        opacity: 1.0;
    }
    
    /* Remover gradiente escuro */
    .hero::before {
        display: none;
    }
}

/* Smartphones (320px - 480px) */
@media screen and (max-width: 480px) {
    .header {
        height: 60px;
        padding: 10px 0;
    }
    
    body {
        padding-top: 60px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }
    
    .nav-logo {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 10px;
    }
    
    .logo-redonda {
        height: 60px;
        width: 60px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .navbar .cta-button {
        padding: 4px 8px;
        font-size: 0.6rem;
        margin-top: 5px;
        min-height: auto;
        line-height: 1.2;
    }
    
    .hero-content {
        width: 95%;
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-details p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Remover cobertura escura em smartphones também */
    .hero::after {
        filter: grayscale(100%) contrast(1.3) brightness(1.0);
        opacity: 1.0;
    }
    
    .hero::before {
        display: none;
    }
    
    /* Seções gerais em mobile */
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Menu hamburger para mobile */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1002;
    }
    
    .nav-menu.mobile-hidden {
        display: none;
    }
    
    .nav-menu.mobile-visible {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
    }
    
    .navbar .cta-button.mobile-cta {
        margin-top: 15px;
        align-self: center;
    }
}

/* Ocultar toggle em desktop */
@media screen and (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Ajustes para telas muito grandes (1440px+) */
@media screen and (min-width: 1440px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.8rem;
    }
    
    .logo-redonda {
        height: 200px;
        width: 200px;
    }
    
    .header {
        height: 90px;
    }
    
    body {
        padding-top: 90px;
    }
}

/* Ajustes para orientação landscape em mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 10px 0;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    /* Remover cobertura escura em landscape também */
    .hero::after {
        height: 50%;
        filter: grayscale(100%) contrast(1.3) brightness(1.0);
        opacity: 1.0;
    }
    
    .hero::before {
        display: none;
    }
}

/* Melhorias de performance e acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ajustes para telas de alta densidade (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::after {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
    }
}


/* Correções adicionais para telas muito pequenas */
@media screen and (max-width: 360px) {
    .header {
        height: 50px;
        padding: 5px 0;
    }
    
    body {
        padding-top: 50px;
    }
    
    .logo-redonda {
        height: 50px;
        width: 50px;
    }
    
    .navbar {
        gap: 5px;
        padding: 0 5px;
    }
    
    .nav-link {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .navbar .cta-button {
        padding: 3px 6px;
        font-size: 0.5rem;
        margin-top: 3px;
        min-height: 20px;
        line-height: 1.1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Remover cobertura escura em telas muito pequenas também */
    .hero::after {
        filter: grayscale(100%) contrast(1.3) brightness(1.0);
        opacity: 1.0;
    }
    
    .hero::before {
        display: none;
    }
}

/* Melhorias no scroll - removido scroll-behavior para usar JS customizado */
html {
    scroll-padding-top: 80px;
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

@media screen and (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }
}

/* Prevenir sobreposição de elementos */
.navbar {
    min-height: 40px;
    overflow: visible;
}

@media screen and (max-width: 480px) {
    .navbar {
        min-height: 30px;
    }
}

/* Ajustes para o menu mobile */
@media screen and (max-width: 768px) {
    .nav-menu.mobile-visible {
        z-index: 1003;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu-toggle {
        z-index: 1004;
    }
}


/* ========================================
   NAVEGAÇÃO DIRETA - SEM PROBLEMAS DE SCROLL
======================================== */

/* Forçar scroll instantâneo */
* {
    scroll-behavior: auto !important;
}

html {
    scroll-behavior: auto !important;
}

/* Remover qualquer transição que possa afetar scroll */
html, body {
    scroll-behavior: auto !important;
    transition: none !important;
}

/* Garantir que não há interferência */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

