/* Estilos adicionales que no están en Tailwind */

/* Header glassmorphism effect on scroll */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

#header.scrolled .header-border {
    border-color: #e4e4e7;
}

/* Form inputs styled like ShadCN */
.input-field,
.textarea-field {
    font-family: 'Nunito', sans-serif;
    flex: 1 1 0%;
    min-width: 0;
    border-radius: 0.375rem;
    border-width: 1px;
    background-color: #f3f3f5;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    transition-property: color, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    outline: 2px solid transparent;
    outline-offset: 2px;
    width: 100%;
}

.input-field::placeholder,
.textarea-field::placeholder {
    color: #717182;
}

.input-field:focus,
.textarea-field:focus {
    border-color: #1ba85f;
    box-shadow: 0 0 0 3px rgba(27, 168, 95, 0.1);
    outline: none;
}

.textarea-field {
    resize: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .input-field,
    .textarea-field {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #107241;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-custom {
    animation: spin 0.8s linear infinite;
}

/* Content stretch utility (for exact Figma layouts) */
.content-stretch {
    align-content: stretch;
}
