/* ===== MOBILE GRANDE (431px a 768px) ===== */
@media (max-width: 768px) and (min-width: 431px) {
    
    /* HEADER */
    .menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .menu-mobile i {
        font-size: 1.8rem;
        color: #2b3c6f;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* HERO */
    .hero {
        min-height: auto;
        padding: 50px 0;
        background-position: 30% center;
        background-size: cover;
    }
    
    .hero .container {
        justify-content: center;
    }
    
    .hero-content {
        width: 90%;
        max-width: 100%;
        text-align: center;
        background: rgba(255,255,255,0.9);
        border-radius: 10px;
        padding: 1.8rem 1.2rem;
        margin-left: 0;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .entrega-gratis {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        white-space: normal;
        text-align: center;
    }
    
    /* SOBRE NÓS - PADDING REDUZIDO */
    .sobre-banner {
        min-height: auto;
        padding: 20px 0;
    }
    
    .sobre-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sobre-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .sobre-diferenciais {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem;
        margin-top: 2rem;
    }
    
    .diferencial-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem 0.4rem;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(5px);
        border-radius: 10px;
        min-height: 200px;
        height: auto;
    }
    
    .diferencial-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .diferencial-texto h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        color: white;
        line-height: 1.3;
        text-align: center;
    }
    
    .diferencial-texto p {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.3;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* PRODUTOS - PADDING REDUZIDO */
    .servicos {
        padding: 20px 0 !important;
    }
    
    .servicos-header {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .servicos-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .btn-ver-todos-azul {
        align-self: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .servicos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .servico-card:nth-child(n+7) {
        display: none;
    }
    
    .servico-imagem {
        height: 110px;
    }
    
    .servico-info {
        padding: 0.6rem 0.3rem;
    }
    
    .servico-info h3 {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        min-height: 32px;
        text-align: center;
    }
    
    .btn-whatsapp-icon {
        font-size: 0.6rem;
        padding: 0.4rem 0.2rem;
    }
    
    .btn-whatsapp-icon img {
        width: 12px;
        height: 12px;
    }
    
    /* PARCEIROS - PADDING REDUZIDO E APENAS 3 PARCEIROS */
    .portfolio {
        padding: 20px 0 !important;
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .portfolio-header h2 {
        font-size: 1.8rem;
        color: white;
        text-align: center;
    }
    
    .btn-ver-todos {
        align-self: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* CORREÇÃO: Botão com fundo branco e texto azul */
    .portfolio .btn-ver-todos {
        background: white !important;
        color: #2b3c6f !important;
        border: 2px solid white !important;
    }
    
    .portfolio .btn-ver-todos:hover {
        background: transparent !important;
        color: white !important;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mostrar apenas 3 parceiros */
    .portfolio-card:nth-child(n+4) {
        display: none;
    }
    
    .portfolio-imagem {
        height: 110px;
    }
    
    /* CONTATO */
    .contato {
        padding: 20px 0;
    }
    
    .contato-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contato-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .contato-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contato-form {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .contato-form .form-group input,
    .contato-form .form-group textarea {
        width: 100%;
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 5px;
        text-align: center;
    }
    
    .btn-contato {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .contato-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .contato-card-item {
        padding: 0.9rem 0.3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #f5f5f5;
        border-radius: 8px;
    }
    
    .contato-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contato-card-texto h3 {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        text-align: center;
        width: 100%;
    }
    
    .contato-card-texto p {
        font-size: 0.6rem;
        color: #666;
        line-height: 1.2;
        margin: 0;
        text-align: center;
        width: 100%;
        word-break: break-word;
    }
    
    /* FOOTER - AJUSTES DE ESPAÇAMENTO */
    .footer {
        padding: 10px 0 10px !important;
    }
    
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
        opacity: 0.9;
        font-size: 0.9rem;
    }
}