/* Estilos Responsivos Complementares */

/* Preloader Responsivo */
@media (max-width: 768px) {
    .loader-circle {
        width: 40px;
        height: 40px;
    }
    
    .loader-text {
        font-size: 0.875rem;
    }
}

/* Menu Mobile Melhorado */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: var(--dark);
        transition: all 0.3s ease;
    }

    .navbar-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .navbar-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        padding: 15px 0;
        justify-content: center;
        width: 100%;
    }
}

/* Hero Section Responsivo */
@media (max-width: 768px) {
    .hero-content {
        padding: 120px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 25px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .benefit-item {
        padding: 10px 15px;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Seções Responsivas */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Banner Promocional Responsivo */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .promo-text {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .promo-btn {
        align-self: center;
    }
}

/* Sobre Nós Responsivo */
@media (max-width: 768px) {
    .sobre-content .row {
        flex-direction: column-reverse;
    }

    .sobre-image {
        margin-bottom: 30px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .estatisticas-section .row {
        justify-content: center;
    }

    .empresa-info .row {
        flex-direction: column;
    }
}

/* Serviços Responsivo */
@media (max-width: 768px) {
    .servicos-grid .row {
        flex-direction: column;
    }

    .servico-card {
        margin-bottom: 20px;
    }

    .servicos-extras .row,
    .vantagens-section .row {
        flex-direction: column;
    }

    .processo-steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 20px;
    }

    .servicos-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Depoimentos Responsivo */
@media (max-width: 768px) {
    .depoimento-card {
        padding: 20px;
    }

    .carousel-controls {
        bottom: -60px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: -40px;
    }

    .satisfacao-stats .row {
        justify-content: center;
    }

    .reviews-platforms {
        flex-direction: column;
        gap: 10px;
    }

    .depoimentos-cta {
        text-align: center;
    }
}

/* Contato Responsivo */
@media (max-width: 768px) {
    .contato-content .row {
        flex-direction: column;
    }

    .contato-info {
        margin-bottom: 40px;
    }

    .contato-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .mapa-container iframe {
        height: 250px;
    }

    .mapa-overlay {
        position: static;
        background: var(--white);
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer-main .row {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-links {
        justify-content: center;
    }
}

/* Botões Flutuantes Responsivos */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Cookie Notice Responsivo */
@media (max-width: 768px) {
    .cookie-notice {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-content p {
        font-size: 0.875rem;
    }

    .btn-accept {
        width: 100%;
        padding: 12px;
    }
}

/* Páginas Internas Responsivas */
@media (max-width: 768px) {
    .hero-interno {
        padding: 120px 0 60px;
        text-align: center;
    }

    .politicas-content,
    .termos-content {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .politica-section,
    .termo-section {
        margin-bottom: 30px;
    }

    .politica-section h2,
    .termo-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Animações Responsivas */
@media (max-width: 768px) {
    [data-aos] {
        animation-duration: 0.5s !important;
    }
}

/* Scroll Suave para Mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* Ajustes de Performance para Mobile */
@media (max-width: 768px) {
    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 62, 80, 0.8);
        z-index: 1;
    }

    .hero-img {
        transform: scale(1.1);
        filter: blur(1px);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px 0 30px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 