/*
 * Arquivo para customizações CSS personalizadas
 * Este arquivo NÃO será sobrescrito pelo Tailwind build
 */

/* Customizações específicas do projeto */
.mascot-container {
    /* Estilos específicos para o mascote */
}

/* Links de Admin no Header */
.admin-nav-link {
    transition: all 0.2s ease-in-out;
}

.admin-nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Separador visual para links de admin */
.admin-nav-separator {
    background: linear-gradient(to bottom, transparent, rgba(107, 114, 128, 0.3), transparent);
}

/* Mascote de Manutenção */
.maintenance-mascot {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
}

/* Responsivo para mobile */
@media (max-width: 640px) {
    .maintenance-mascot {
        width: 150px;
        height: 150px;
        padding: 10px;
    }
}

.maintenance-mascot:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.maintenance-mascot.large {
    width: 300px;
    height: 300px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.maintenance-mascot.small {
    width: 150px;
    height: 150px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Container para páginas de manutenção */
.maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.maintenance-content {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    margin: 1rem;
}

/* Classes utilitárias customizadas */
.btn-custom {
    @apply bg-primary-600 hover:bg-primary-700 text-white px-4 py-2 rounded-md transition-colors;
}

/* Media queries customizadas */
@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

.rounded-vm {
  border-radius: 1rem 0 1rem 0;
}

/* Melhorias Mobile */
@media (max-width: 768px) {
    /* Botões mais amigáveis ao toque */
    .btn-primary, .btn-custom {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
    }

    /* Espaçamento melhorado para cards */
    .card {
        margin-bottom: 1rem;
    }

    /* Newsletter form mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 44px;
    }

    /* Texto mais legível no mobile */
    .text-responsive {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Containers com padding adequado */
    .container-mobile {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ajustes para tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .btn-primary, .btn-custom {
        min-height: 40px;
        padding: 10px 16px;
    }
}

/* Footer responsivo */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Utilitários adicionais (movidos do input.css) */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.touch-target {
    min-height: 44px;
    min-width: 44px;
}

.text-balance {
    text-wrap: balance;
}

.scrollbar-thin {
    scrollbar-width: thin;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.mascot-fixed {
    position: absolute;
    bottom: 0;
    object-fit: contain;
    object-position: bottom;
}

/* Sobrescrever estilos específicos se necessário */
.override-tailwind {
    /* Estilos que precisam sobrescrever o Tailwind */
}

