.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-top: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

    .hero-section .btn-primary {
        background-color: white;
        color: #667eea;
        border: none;
    }

        .hero-section .btn-primary:hover {
            background-color: #f0f0f0;
            transform: scale(1.05);
        }

    .hero-section .btn-outline-primary {
        border-color: white;
        color: white;
    }

        .hero-section .btn-outline-primary:hover {
            background-color: white;
            color: #667eea;
            transform: scale(1.05);
        }

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

    .navbar-brand img {
        max-height: 40px;
    }

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        padding: 30px 0;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .card-img-top {
        height: 180px !important;
    }
}
