/* Estilo global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', serif;
    background-color: #242424;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 100vh;
    max-width: 100%;
}

.content {
    padding-left: 100px;
}

.description {
    font-family: 'Roboto', serif;
    color: white;
    font-size: 40px;
    max-width: 45%;
    line-height: 1;
}

h1 {
    font-family: 'Roboto', serif;
    color: white;
    font-size: 100px;
    font-weight: bold;
}

p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 20px 0;
}

.buttons {
    margin-top: 50px;
}

.btn {
    font-family: 'Roboto, serif';
    background-color: white;
    color: #242424;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    font-size: large;
    font-weight: bold;
    font-style: italic;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}

.pattern {
    background-image: url('/img/Group%202482.svg');
    background-size: cover;
    width: 25%;
    height: 100%;
    padding-right: 2rem;
}

.footer {
    padding: 20px;
    font-family: 'Plus Jakarta Sans';
    background-color: #242424;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-top: 1px solid #ccc;
    width: 90%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footer-logo img {
    width: 100px; /* Ajusta el tamaño del logo */
}

.footer-links {
    text-align: center;
    flex-grow: 1;
}

.footer-links a {
    color: white;
    font-family: 'Plus Jakarta Sans';
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links p {
    margin-top: 10px;
    font-family: 'Plus Jakarta Sans';
    color: white;
    font-size: medium;
}

.social {
    display: flex;
    margin-left: 20px;
}

.social li {
    display: inline-block;
    margin-left: 10px;
}

.social li > a > svg {
    width: 26px;
    height: 26px;
    fill: #999; /* Color de los iconos */
}

.social li > a > svg:hover {
    fill: #333; /* Cambia el color al hacer hover */
}
