/* Features Section */
.features {
    background-color: #f5f5f5; /* Light grey bg */
    padding: 0 2rem 4rem;
    margin-top: -3rem; /* Pull up to overlap if desired, but image shows cards separate. Let's keep them separate but nicely spaced */
    margin-top: 3rem;
    background-image: url('../img/bg-image.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1rem;
    color: #0d47a1;
}

.feature-icon .material-icons {
    font-size: 3rem;
}

.feature-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.feature-description {
    color: #777;
    line-height: 1.5;
}

/* Hero Section */
.hero {
    /* Gradient from screenshot approx */
    background: linear-gradient(110deg, #104c82 0%, #4477aa 100%); 
    padding: 4rem 2rem 6rem; /* Extra padding bottom for the overlap effect if desired, straight box here */
    color: white;
    flex: 1; /* Pushes footer down */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    /* position: absolute; */
    /* top: -50%; */
    /* right: -20%; */
    /* width: 80%; */
    /* height: 200%; */
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px; /* Fixed width for card roughly */
    gap: 4rem;
    align-items: center;
    /* position: relative; */
    /* z-index: 1; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.hero-content {
    max-width: 500px;
    color: white;
}


/* Login Card */
.login-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
}

.login-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.login-icon-container {
    background-color: #e3f2fd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 30px;
}

.login-icon {
    color: #1976D2;
}

.login-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.login-subtitle {
    color: #777;
}

.login-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-conectar-se {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background-color: #0d47a1;
    color: white;
    padding: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

main.container{
    margin: 0;
    padding: 0;
    width: auto;
}