/* CSS Responsivo - PRAMAC BRASIL */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Menu Mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 40px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        order: -1;
    }
    
    .stats-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    /* Promo Banner */
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-stats {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    /* Serviços */
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Depoimentos */
    .carousel-controls {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contato */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        margin: 20px 0;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* Cards and Sections */
    .servico-card {
        padding: 30px 20px;
    }
    
    .servico-icon {
        width: 60px;
        height: 60px;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .beneficio-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Depoimentos */
    .depoimento-card {
        padding: 30px 20px;
    }
    
    .depoimento-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cliente-avatar {
        width: 50px;
        height: 50px;
    }
    
    /* Contato */
    .info-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
    
    /* Legal Pages */
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .navbar {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        padding: 25px 20px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Promo Banner */
    .promo-banner {
        padding: 15px 0;
    }
    
    .promo-text h2 {
        font-size: 1.25rem;
    }
    
    .promo-text p {
        font-size: 14px;
        margin: 0;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-promo {
        padding: 12px 24px;
    }
    
    /* Cards */
    .servico-card,
    .depoimento-card,
    .contato-form,
    .info-card {
        padding: 20px 15px;
    }
    
    .servico-icon {
        width: 50px;
        height: 50px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Stats */
    .sobre-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
        background: #F8F9FA;
        border-radius: 10px;
    }
    
    /* Benefits */
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact */
    .info-cards {
        gap: 15px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon {
        align-self: center;
    }
    
    .form-checkbox {
        align-items: flex-start;
    }
    
    .form-checkbox label {
        font-size: 13px;
    }
    
    /* WhatsApp */
    .whatsapp-banner {
        padding: 25px 20px;
    }
    
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .whatsapp-icon-large {
        align-self: center;
    }
    
    .whatsapp-text h3 {
        font-size: 1.1rem;
    }
    
    .whatsapp-text p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-stats .stat {
        min-width: 80px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    /* Legal */
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    /* Utilities Mobile */
    .hidden-mobile {
        display: none !important;
    }
    
    .visible-mobile {
        display: block !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-svg {
        width: 25px;
        height: 25px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding-top: 30px;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-content p {
        font-size: 13px;
        margin: 0;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .servico-card,
    .depoimento-card,
    .contato-form {
        padding: 15px 10px;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-section {
        padding: 10px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-menu {
        height: calc(100vh - 60px);
        top: 60px;
        padding-top: 20px;
        gap: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .whatsapp-cta,
    .cookie-notice,
    .nav-toggle,
    .carousel-controls,
    .carousel-indicators,
    .legal-actions button:first-child {
        display: none !important;
    }
    
    .legal-page {
        padding-top: 0;
    }
    
    .legal-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-link,
    .whatsapp-btn,
    .btn-promo {
        animation: none !important;
    }
} 