/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a202c;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-link {
    color: #1a202c;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #007bff;
}

.imagem_logo {
    display: flex;
    text-align: end;
    justify-content: center;
    margin-bottom: -4em;
}

/* Hero Section */
.hero {
    padding: 5rem 1rem 0rem;
    text-align: center;
}

.hero-content {
    max-width: 48rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4d4e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-button-login {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 10em;
}

.hero-button-cadastro {
    background-color: #ffffff;
    color: #007bff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 10em;
}


.hero-button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.containerLoginCadastro {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-image {
    margin-top: 3rem;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-left: 3em;
    
}
/* Features Section */
.features {
    padding: 4rem 1rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a202c;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-bg {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #007bff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
}

/* Footer */
.footer {
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: #718096;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 2em;
    font-size: 1em;
    color: #1e1e1e;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.2s;

}

i {
    font-size: 0.8em;
    padding: 0.8em;
    border: 2px solid #007bff;
    border-radius: 50%;
    /* background-color: #0056b3; */

}

.login-btn:hover {
    background-color: #f3f3f3;
}