/*

    Olá pessoa, analisadora do código-fonte dos mais diversos websites,
    aqui está o CSS do site, não copie por favor.

*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    /* bg-gray-900 */
    color: #d1d5db;
    /* text-gray-300 */
}

.hero-pattern {
    background-image: linear-gradient(to right bottom, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5)), url("fundo.png");
    background-size: cover;
    background-position: center;
}

.hero-icon {
    background-color: rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #9ca3af;
    /* text-gray-400 */
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background-color: #374151;
    /* bg-gray-700 */
    color: #9ca3af;
    /* text-gray-400 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    border-radius: 0.5rem;
    /* rounded-lg */
}

.section-bg-darker {
    background-color: #1f2937;
    /* bg-gray-800 */
}

.section-bg-darkest {
    background-color: #111827;
    /* bg-gray-900 */
}

.card-bg {
    background-color: #374151;
    /* bg-gray-700 */
}

.text-primary-accent {
    color: #e5e7eb;
    /* text-gray-200 (um branco suave) */
}

.text-secondary-accent {
    color: #9ca3af;
    /* text-gray-400 */
}

.button-primary {
    background-color: #e5e7eb;
    /* bg-gray-200 */
    color: #1f2937;
    /* text-gray-800 */
}

.button-primary:hover {
    background-color: #d1d5db;
    /* bg-gray-300 */
}

.button-secondary {
    background-color: #4b5563;
    /* bg-gray-600 */
    color: #e5e7eb;
    /* text-gray-200 */
}

.button-secondary:hover {
    background-color: #374151;
    /* bg-gray-700 */
}

.content-section h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #e5e7eb; /* text-primary-accent */
    margin-bottom: 0.75rem; /* mb-3 */
    margin-top: 1.5rem; /* mt-6 */
}
.content-section p, .content-section ul {
    font-size: 1rem; /* text-base */
    color: #9ca3af; /* text-secondary-accent */
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.6;
}
.content-section ul {
    list-style-position: inside;
    padding-left: 1rem;
}
.content-section li {
    margin-bottom: 0.5rem;
}
.content-section a {
    color: #5eead4; /* Tailwind teal-300 for links in dark mode */
    text-decoration: underline;
}

.mobile-menu {
    display: none;
}

section[id] {
    scroll-margin-top: 9rem;
}