/* Estilos específicos para index.view.php */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
h1 {
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #3a0ca3);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 50px;
    margin-top: -1.5rem;
}

.hero-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.features-section {
    margin: 60px 0;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0d6efd;
}

.support-section {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}