@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
    background: #fffdf8;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9800;
}

.botonPrototipo {
    font-family: "Open Sans", sans-serif;
    padding: 8px 15px;
    font-size: 1rem;
    color: #333;
    background-color: #ff9800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botonPrototipo:hover {
    background-color: #F28D28;
}

.hero-section {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 0; 
    padding: 20px;
    background-color: #f9f9f9;
}

.hero-image {
    flex-shrink: 0; 
    margin-right: 20px; 
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.heroText {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
}

.heroText .ppp {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #191519;
}

.heroText p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
}

.hero-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #F28D28;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #ffb871;
}

/* Tipografia */
h1 {
    color: #191519;
    font-weight: 800;
    font-size: 3rem;
    padding: 0 1rem;
}

h2 {
    background-color: #F28D28;
    padding: 1rem;
    text-align: center;
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: black;
}

/* Header */
header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.nav-links li {
    padding: 0.5rem 1.5rem;
    margin: 1rem 2.5rem;
    list-style: none;
    cursor: pointer;
}

.nav-links li:hover {
    font-weight: 600;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 1rem;
}

/* Main */
.contenedorVn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.vnText {
    font-family: "Oswald", sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: calc(2rem + 20vw);
    font-weight: bold;
    background-image: url('../img/foto-fadu.jpg');
    background-size: cover;
    -webkit-text-fill-color: transparent;
    filter: grayscale(100%);
    padding: 20px;
}

/* Integrantes */
.integrantes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.integrantes div {
    background-color: #F28D28;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 4rem 2rem;
    max-width: 25rem;
    transition: background-color 1s;
    box-shadow: 6px 6px 12px #e0e0e0, -6px -6px 12px #ffffff;
}

.integrantes div:hover {
    background-color: #ff9800;
}

.avatar {
    border-radius: 16px;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 1s;
}

.avatar:hover {
    filter: grayscale(0%);
}

.integrantes h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footerCont {
    background-color: gainsboro;
    padding: 3rem;
    margin: 0 2rem 2rem;
    border-radius: 10px;
}

.textFooter {
    background-color: #F28D28;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem;
}

h4 {
    color: #ff9800;
    font-size: 1.5rem;
}

h5 {
    font-size: 1rem;
}

/* Plan Section */
.titleMapa {
    color: #ff9800;
    margin-top: 2rem;
}

article, .texto02, .ListMapa li {
    margin: 1rem;
    padding: 1rem;
}


.centerFigma{
    display: flex;
justify-content: center;
}
