/* Violet Wound - Responsive Styles - VERSÃO ATUALIZADA */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .solution-layout {
        gap: 3rem;
    }
    
    .professional-image {
        max-width: 350px;
    }
    
    .contact-layout {
        gap: 3rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Header effects mobile */
    .header::before {
        display: none;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Badge mobile */
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-badge::after {
        height: 1px;
    }
    
    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-seta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breadcrumb-item {
        clip-path: none;
        min-width: auto;
        max-width: none;
    }
    
    .problem-highlight-box {
        padding: 1.5rem 2rem;
        margin-top: 1.5rem;
    }
    
    .problem-highlight-box .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .problem-highlight-box p {
        font-size: 15px;
        text-align: left;
    }
    
    /* Solution Layout Mobile */
    .solution-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .horizontal-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-box {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .step-image {
        height: 250px;
    }
    
    /* Validação Clínica Mobile */
    .logos-flutuantes-globais {
        display: none;
    }
    
    .grid-validacao {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .card-resultado:nth-child(1),
    .card-resultado:nth-child(2),
    .card-resultado:nth-child(3),
    .card-resultado:nth-child(4),
    .card-resultado:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .logo-flutuante {
        display: none;
    }
    
    .container-validacao h2 {
        font-size: 2rem;
    }
    
    .validacao-clinica {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .container-validacao h2::after {
        width: 60px;
        height: 2px;
    }
    
    .subtitulo-validacao {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Vantagens Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        font-size: 1.75rem;
    }
    
    /* Team Mobile */
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .team-card {
        padding: 2rem;
        min-width: auto;
        max-width: 400px;
        width: 100%;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.25rem;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    /* Contact Mobile */
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form-container,
    .professional-image-container {
        flex: none;
        min-width: auto;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 1rem auto 0;
    }
    
    .professional-image {
        max-width: 300px;
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Back to Top Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Animated Lines - Hide on Mobile */
    .animated-lines-container {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Extra Small */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    /* Section Titles Extra Small */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Problem highlight extra small */
    .problem-highlight-box {
        padding: 1.25rem 1.5rem;
    }
    
    .problem-highlight-box .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .problem-highlight-box p {
        font-size: 14px;
    }
    
    /* Stats Extra Small */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Breadcrumb Extra Small */
    .breadcrumb-item {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .breadcrumb-item h3 {
        font-size: 15px;
    }
    
    .breadcrumb-item p {
        font-size: 12px;
    }
    
    /* Step boxes extra small */
    .step-box {
        padding: 1rem;
    }
    
    .step-image {
        height: 200px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    /* Validação cards extra small */
    .card-resultado {
        padding: 16px;
        min-height: 120px;
    }
    
    .card-resultado h3 {
        font-size: 1rem;
    }
    
    .card-resultado p {
        font-size: 0.85rem;
    }
    
    /* Advantages Extra Small */
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-card h4 {
        font-size: 1rem;
    }
    
    .advantage-card p {
        font-size: 14px;
    }
    
    /* Team Extra Small */
    .team-card {
        padding: 1.5rem;
    }
    
    .member-description {
        font-size: 14px;
    }
    
    /* Contact Form Extra Small */
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .contact-form button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .professional-image {
        max-width: 250px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .validacao-clinica {
        min-height: 70vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .advantage-card:hover {
        transform: translateY(-5px);
    }
    
    .team-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
    
    .step-box:hover {
        transform: translateY(-5px);
    }
    
    .professional-image:hover {
        transform: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .animated-lines-container,
    .back-to-top,
    .progress-line,
    .section-scanner,
    .linha-energia,
    .logo-flutuante,
    .logos-flutuantes-globais {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
        background: none !important;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .validacao-clinica {
        background: none !important;
        color: #000 !important;
    }
    
    .section {
        padding: 1.5rem 0;
        page-break-inside: avoid;
    }
    
    .stat-card,
    .advantage-card,
    .team-card,
    .card-resultado {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
        color: #000 !important;
    }
    
    .hero h1 {
        font-size: 24pt;
        color: #000 !important;
    }
}

/* Specific fixes for new layout */
@media (max-width: 768px) {
    .solution-layout {
        flex-direction: column;
    }
    
    .contact-layout {
        flex-direction: column;
    }
}