/* ===================================================================
   ESTILOS PARA A PÁGINA DE VENDAS
   =================================================================== */

body {
    font-family: 'Inter', sans-serif;
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: -2s;
}

.animation-delay-4000 {
    animation-delay: -4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.price-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-config {
    transition: all 0.3s ease;
}

.project-config:hover {
    transform: scale(1.02);
}

.page-counter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Estilos específicos para o modal */
#projectModal {
    z-index: 9999;
}

#projectModal.hidden {
    display: none !important;
}

#projectModal:not(.hidden) {
    display: flex !important;
}

/* Centralizar o modal corretamente */
#projectModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Estilo do container interno do modal */
#projectModal .bg-black\/90 {
    max-width: 90vw;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    position: relative;
}

@media (min-width: 768px) {
    #projectModal .bg-black\/90 {
        max-width: 75vw;
    }
}

@media (min-width: 1024px) {
    #projectModal .bg-black\/90 {
        max-width: 65vw;
    }
}

@media (min-width: 1280px) {
    #projectModal .bg-black\/90 {
        max-width: 60vw;
    }
}

/* Estilos para o popup de login */
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-popup-content {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    margin: 0 1rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Estilos para mensagens de erro no modal */
.modal-error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

/* Estilos para ícone de informação do email */
.email-info-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #60a5fa;
    z-index: 10;
}

/* Estilos para campos desabilitados */
.cursor-not-allowed {
    cursor: not-allowed;
}

.bg-gray-600\/50 {
    background-color: rgba(75, 85, 99, 0.5);
}
