/*COLORES
ROSADO OSCURO #BC005B
ROSADO CLARO #CF0169
ROSADO MAS CLARO #ee89af
BLANCO ROSADO #f8ccdd

*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    line-height: 1.6;
    color: white;
    background-color: #f8ccdd;
    padding-top: 60px;
}

/* Navbar */
.navbar {
    background-color: #BC005B;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-container {
    width: 100%;
    padding: 0 1rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 1.2rem;
}

.navbar-text {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.navbar-btn {
    background-color: #f8ccdd;
    color: #BC005B;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.navbar-btn:hover {
    background-color: #ee89af;
}


/* Sobre Nosotros */
#sobre-nosotros {
    padding: 0rem;
    background-color: #f8ccdd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-nosotros-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.sobre-nosotros-text {
    position: absolute;
    top: 42%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    z-index: 1;
}

.sobre-nosotros-img {
    width: 900px;
    height: 700px;
    object-fit: contain;
    border-radius: 8px;
}

.sobre-nosotros-text h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.sobre-nosotros-text p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.sobre-nosotros-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #BC005B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #BC005B;
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    #sobre-nosotros {
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 60px);
    }
    .sobre-nosotros-img {
        display: none;
    }
    .sobre-nosotros-text {
        position: relative;
        background-color: #BC005B;
        padding: 2rem;
        border-radius: 8px;
        height: auto;
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .sobre-nosotros-text h2 {
        font-size: 1.2rem;
    }
    .sobre-nosotros-text p {
        font-size: 0.8rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    #nuestras-redes h2 {
        font-size: 2rem;
    }
    .redes-icon {
        font-size: 1.5rem;
    }
    .navbar-text {
        font-size: 0.8rem;
    }
    .navbar-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Nuestras Redes */
#nuestras-redes {
    padding: 4rem 0;
    background-color: #ee89af;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    text-align: center;
}

#nuestras-redes h2 {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    text-align: center;
    padding-bottom: 20px;   
}
.redes-icons {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.redes-icon {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.redes-icon:hover {
    color: #BC005B;
}

#nuestras-redes .p {
    padding-bottom: 5rem;
    padding-top: 0;
}

/* Beneficios */
/*
#beneficios {
    padding: 4rem 0;
    background-color: #f8ccdd;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#beneficios h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

#beneficios p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
    * /

/* Footer */
footer {
    background-color: #BC005B;
    color: white;
    padding: 0.3rem;
    text-align: center;
}

footer p {
    font-size: 0.7rem;
    white-space: nowrap;
}

.logo {
    width: 200px;
    height: 200px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .sobre-nosotros-text {
        height: 300px;
        padding-top: 50px;
        background-size: 175%;
    }
    .sobre-nosotros-text h2 {
        font-size: 1.2rem;
    }
    .sobre-nosotros-text p {
        font-size: 0.8rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    #nuestras-redes h2 {
        font-size: 2rem;
    }
    .redes-icon {
        font-size: 1.5rem;
    }
    .navbar-text {
        font-size: 0.8rem;
    }
    .navbar-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .sobre-nosotros-text {
        height: 250px;
        padding-top: 30px;
        background-size: 100%;
    }
    .sobre-nosotros-text h2 {
        font-size: 1rem;
    }
    .sobre-nosotros-text p {
        font-size: 0.7rem;
    }
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    #nuestras-redes h2 {
        font-size: 1.2rem;
    }
    .redes-icon {
        font-size: 1.2rem;
    }
    .navbar-logo {
        height: 30px;
    }
    .navbar-text {
        font-size: 0.7rem;
    }
    .navbar-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

