* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
}



/* CONTENEDOR */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-info h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: -20px; /* O el valor que hayas ajustado previamente */
    margin-bottom: 15px; /* Añadimos un margen inferior de 15px */
}

.about-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #222; /* Negro ligeramente más suave */
}
/* IMAGEN */
.about-image {
    margin-top: 30px;
    width: 90%;
    max-width: 700px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* HEADER */
.header {
    background-color: #272727;
    color: white;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.header-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-links ul li a:hover {
    text-decoration: underline;
}

.logo img {
    height: 70px; 
    width: auto;
    display: block;
}
.logo {
    display: flex;
    align-items: center;
}



.login {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: none;
    color: white;
}

.login a {
    background: none;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.login a:hover {
    text-decoration: underline;
}



/* FOOTER */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

a, a:visited {
    color: white;
    text-decoration: none;
}


.boton-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.boton-flotante:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}