/* Custom Utilities not needing Tailwind config clutter */
body {
    background-color: #000000;
    color: #ffffff;
}

.grid-bg {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, #111 1px, transparent 1px),
        linear-gradient(to bottom, #111 1px, transparent 1px);
    background-attachment: fixed;
    /* From terms.html, good addition */
}

.glow-violet {
    box-shadow: 0 0 20px rgba(76, 34, 255, 0.3);
}

.glow-text {
    text-shadow: 0 0 10px rgba(76, 34, 255, 0.5);
}

/* Hide scrollbar for clean look - Custom scrollbar from terms.html/index.html merged */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
    /* From terms.html */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* From terms.html */
}

/* Typography specifics for legal text (from terms.html) */
.legal-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-family: 'Neue Haas Grotesk', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #e5e5e5;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #A3A3A3;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
    color: #A3A3A3;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Font Classes - Active only */
.font-sora {
    font-family: 'Sora', sans-serif !important;
}

/* intl-tel-input - Dark Theme Override */
.iti,
.iti--allow-dropdown {
    width: 100% !important;
    z-index: 9999 !important;
}

.iti__selected-dial-code {
    color: #ffffff;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.iti__country-list {
    color: #f9f9f9 !important;
    background-color: #0a0a0a !important;
    border: 1px solid #262626 !important;
    max-height: 200px;
}

.iti__arrow {
    border-top-color: #ffffff !important;
}

.iti__arrow--up {
    border-bottom-color: #ffffff !important;
}

.iti__selected-flag {
    background-color: transparent !important;
}

.iti__selected-flag:hover {
    background-color: #171717 !important;
}

.iti__divider {
    border-bottom-color: #262626 !important;
}

.iti__country-name {
    font-size: 14px;
}

.iti__country.iti__highlight {
    background-color: #171717 !important;
}

.iti__dial-code {
    color: #a3a3a3;
}

/* Modal form inputs */
#agendamentoForm input::placeholder {
    color: #525252;
}

.iti__selected-flag {
    height: 52px !important;
}