/* Coherencia Legal - Tailwind Custom Styles */

body {
    background-color: #faf9fc;
    color: #1b1b1e;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Ambient shadow for cards */
.ambient-shadow {
    box-shadow: 0 4px 20px rgba(18, 43, 79, 0.08);
}

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

.service-card:hover {
    box-shadow: 0 4px 20px rgba(18, 43, 79, 0.08);
    transform: translateY(-4px);
}

/* Forms */
.input-focus-border:focus-within {
    border-color: #001635; /* primary */
    border-bottom-width: 2px;
}
