/* Material Design - Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #6200ea;
    color: white;
}

.app-bar .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    background-color: #bb86fc;
    color: white;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero .btn-primary {
    background-color: #03dac5;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    transition: background 0.3s;
}

.hero .btn-primary:hover {
    background-color: #018786;
}

.benefits, .features, .testimonials, .process, .guarantee, .faq {
    padding: 50px 10%;
}

.benefit-list, .feature-list, .steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefit-item, .feature-item, .testimonial-item, .step {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer p {
    margin-top: 10px;
}
