* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: figtree;
}

body {
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
    background-color: #1a1a1a;
    color: #fff;
}


.body {
    font-size: 16px;
    line-height: 1.5;
    padding: 50px;

}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    background-color: rgb(0, 106, 255);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.logo {
    position: absolute;
    left: 50px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-itens {
    display: flex;
    list-style: none;
}

.nav-itens li {
    cursor: pointer;
    position: relative;
    color: white;
}

.nav-itens li a{
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
}

.autenticar {
    position: absolute;
    right: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.trilho {
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    margin-right: 10px;
}

.trilho .indicador {
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trilho.dark {
    background-color: #4CAF50;
}

.trilho.dark .indicador {
    left: 27px;
    background-color: white;
}

.user-profile {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.nav-itens li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #ffffff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-itens li:hover:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #c2af08 0%, #f3ff47 100%);
    color: white;
    padding: 100px 0 40px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.hero-icon img{
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    border-radius: 50%;
}

.hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}


.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

body.dark .stat-card {
    background: #2a2a2a;
    border-color: #444;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

body.dark .stat-number {
    color: #ffffff;
}

.stat-label {
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

body.dark .stat-label {
    color: #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

body.dark .feature-card {
    background: #2a2a2a;
    border-color: #444;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}


body.dark .feature-title {
    color: #fff;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.dark .feature-description {
    color: #ccc;
}


.cta-section {
    background: linear-gradient(135deg, rgb(0, 106, 255), #0088cc);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.btn-section {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    align-items: center;
    gap: 5px;
}

.btn-section:hover {
    background-color: white;
    color: rgb(0, 106, 255);
}

footer {
    width: 100%;
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark footer {
    background: #2a2a2a;
    border-top-color: #444;
}

.footercontats {
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

body.dark .footercontats {
    color: white;
}

.footer-brand {
    flex: 1;
}

.footercontats h1 {
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 2rem;
    color: rgb(0, 106, 255);
}

.footer-columns {
    display: flex;
    gap: 4rem;
    flex: 2;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footerlist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

.footerlist h3 {
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.dark .footerlist h3 {
    color: #ccc;
}

.footerlist .footerlink {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.25s;
    padding: 0.25rem 0;
}

body.dark .footerlist .footerlink {
    color: #ccc;
}

.footerlist .footerlink:hover {
    color: rgb(0, 106, 255);
    transform: translateX(5px);
}

.footercopyright {
    display: flex;
    justify-content: center;
    font-family: sans-serif;
    padding: 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

body.dark .footercopyright {
    color: #ccc;
    border-top-color: #444;
}
