@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
[data-lang] {
    display: none;
}
[data-lang="pt"], [data-lang="en"] {
    display: block;
}
.logo-color {
    color: #0056b3;
}
.bg-primary {
    background-color: #000;
}
.text-primary {
    color: #0056b3;
}
.border-primary {
    border-color: #0056b3;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556740738-b6a17129c1a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
}
.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}
.team-card:hover {
    transform: scale(1.03);
}
.office-card {
    transition: all 0.3s ease;
}
.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 100%;
    width: auto;
}
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
@media (min-width: 768px) {
    .language-switcher {
        position: relative;
        top: 0;
        right: 0;
    }
}

/* Estilo para o campo de data com ícone */
input[type="text"]#date:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px #c4b5fd;
}

input[type="text"]#date {
  padding-right: 2.5rem;
}

.relative .fa-calendar-alt {
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  pointer-events: none;
  color: #a3a3a3;
  font-size: 1.2rem;
} 