body {
    background-color: #FFFAFA ; /* Cor de fundo bege claro, similar ao da Anthropic */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333333; /* Cor de texto principal */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root {
    --accent-color: #6C9174;
}

.text-accent {
    color: var(--accent-color);
}

.text-accent-heavy {
    color: var(--accent-color);
}

.logo-black {
    filter: invert(1);
}

.beige-footer {
    background-color: #eff0f1 ;
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - var(--logo-gap, 0.5rem)));
  }
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 1rem; /* Espaçamento entre os logos */
}

.scroller[data-animated="true"] .scroller__inner {
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

.video-crop-wrapper {
    width: 150%;
    max-width: 150%;
    margin: -4rem 0 0 -10%;
    -webkit-mask-image: radial-gradient(circle, white 80%, transparent 100%);
    mask-image: radial-gradient(circle, white 80%, transparent 100%);
}

.hero-video {
    transform: translateX(-3px);
    width: calc(100% + 3px);
    max-width: none; /* Override any potential max-width conflicts */
    height: auto;
}

.logo-item {
    filter: grayscale(1) brightness(0) opacity(0.5);
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: none;
    opacity: 1;
}

.logo-container {
    overflow: hidden;
}

.logo-text {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem; /* Ajuste o tamanho conforme necessário */
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    margin-left: 0.5rem;
}

.font-light {
    font-weight: 300; /* Peso da fonte light */
}

.btn-text-light {
    font-weight: 300 !important; /* Usando !important para sobrescrever o Tailwind */
}

.dataguardian-animation-container {
    max-width: 400px; /* Adjust as needed */
    margin: 0 auto;
}

