
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f5f7fa;
    color: #333;
}
header {
    background-color: #0057B8;
    color: #fff;
    padding: 2rem;
    text-align: center;
}
main {
    padding: 2rem;
}
a.cta-button {
    display: inline-block;
    background-color: #1DB954;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 5px;
}


nav ul {
    list-style: none;
    background-color: #333;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0;
}
nav ul li a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
}
nav ul li a:hover {
    background-color: #444;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.logo {
    height: 150px;
    width: auto;
}
.site-header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}
.nav-links li a {
    color: #0057B8;
    text-decoration: none;
}
.hero {
    background: linear-gradient(90deg, #0057B8, #3399FF);
    color: white;
    padding: 3rem 0;
    text-align: center;
}
.section {
    padding: 3rem 0;
}
.section.gray {
    background: #f0f2f5;
}
.section-img {
    width: 100%;
    max-width: 600px;
    margin-top: 1.5rem;
    display: block;
}
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li::before {
    content: "✅";
    margin-right: 0.5rem;
}
.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.footer-links li a {
    color: white;
    text-decoration: none;
}

.form-registro {
    margin-top: 1.5rem;
}
.form-registro input[type="text"],
.form-registro input[type="email"],
.form-registro input[type="tel"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-registro input[type="submit"] {
    background-color: #1DB954;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.form-registro input[type="submit"]:hover {
    background-color: #17a74f;
}

/* Tipografía accesible desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Diseño responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .section-img {
        width: 100%;
    }

    .form-registro input[type="text"],
    .form-registro input[type="email"],
    .form-registro input[type="tel"] {
        font-size: 1rem;
    }

    .cta-button {
        display: block;
        margin: 1rem auto;
    }
}

html {
    scroll-behavior: smooth;
}

h1, h2 {
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

.logo {
    height: 150px;
    width: auto;
}

.site-header {
    background: #fff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links li a {
    color: #0057B8;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.hero {
    background: linear-gradient(90deg, #0057B8, #3399FF);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.section {
    padding: 4rem 2rem;
}

.section.gray {
    background: #f0f2f5;
}

.section-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 2rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.checklist li::before {
    content: "✅";
    margin-right: 0.5rem;
}

.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links li a {
    color: white;
    text-decoration: none;
}

.language-selector {
    margin-left: auto;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.language-selector label {
    color: #333;
    margin-right: 0.5rem;
}

.language-selector select {
    padding: 0.25rem;
    font-size: 1rem;
}
