* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: sans-serif; */
    font-family: "Poppins", sans-serif;
}

body {
    /* padding-left: 10%;
    padding-right: 10%; */
    /* Altura completa de la ventana */
    background-image: url('bg.png');
    background-size: cover;
    /* La imagen cubre todo el contenedor */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 0px 5%;
    background-color: white;
    box-shadow: 2px -8px 25px 7px rgba(139, 54, 78, 0.699);
    margin-bottom: 10px;
}

/* Estilos de los iconos del header */
header>* {
    flex: 1
}
header #logo{
    height: 70px;
}
header .icons {
 position: relative;
}

/* Estilos de la navegacion del header */
header nav {
    justify-content: center;
    gap: 30px;
    align-items: center;
    display: flex;
    flex-direction: row;
}

header nav a {
    text-decoration: none;
    color: #ff8fae;
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0;
}

header nav a.active {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

header nav a:hover {
    color: #ffc4c6;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}


/* hero */
.hero-image {
    background-image: url("banner.png");
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENIDO */
.contenido {
    display: flex;
    flex-direction: row;
    padding: 10px 5%;
    align-items: stretch;
    gap: 4%;
    text-shadow: 4px -2px 5px rgba(219, 102, 135, 0.11);
}

.contenido .section {
    flex: 1;
    height: 100%;
}

.card-container-1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5%;
}

.card-container-1>div {
    flex: 1 1 calc(50% - 10%);
    overflow: hidden;
    width: 100%;
    /* Hace que el contenedor de imágenes ocupe el ancho completo */
    height: 500px;
    border-radius: 50px;
    position: relative;
    /* Necesario para la sombra inset */
    background-color: white;
    /* Fondo blanco para ver mejor la sombra */

}

.card-container-1 .overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    box-shadow: rgba(245, 114, 153, 0.507) 0px -350px 36px -81px inset;
}

.card-container-1 .overlay-image h5 {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
}

.card-container-1 div img {
    width: 100%;
    /* Hace que la imagen ocupe el ancho completo del contenedor */
    height: 100%;
    /* Hace que la imagen ocupe la altura completa del contenedor */
    object-fit: cover;
    /* Mantiene la relación de aspecto de la imagen */

    /* Sombra interior */
}

.card-container-1> :last-child {
    width: 100%;
    height: auto;
    border-radius: none;
    margin-top: 3%;
    box-shadow: 2px 3px 7px 2px rgba(219, 102, 136, 0.322);
}

/* ff8fae
ffc4c6 melon*/
.card-container-1 div button {
    width: 100%;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    padding: 10px;
    color: white;
    background: #ff8fae;
    font-weight: 700;

}

.card-container-2 {
    display: flex;
    flex-direction: row;
    gap: 3%;
    height: 100%;
}

.card-container-2> :first-child {
    border-radius: 50px;
    background: #ff8fae;
    height: 560px;
}

.card-container-2 div {
    flex: 1;
}

.card-container-2> :last-child {
    display: flex;
    flex-direction: column;
    gap: 3%;
}

.card-container-2> :last-child div {
    flex: 1;
    background-color: #ff8fae;
    border-radius: 50px;
}

.card-container-2> :first-child img {
    padding: 5px 35px 0px 35px;
    width: 100%;
    /* Hace que la imagen ocupe el ancho completo del contenedor */
    height: 100%;
    /* Hace que la imagen ocupe la altura completa del contenedor */
    object-fit: cover;
}

.card-container-2> :first-child p {
    padding: 10px 20px;
    font-size: 15px;
    text-align: center;
    color: white;
    font-weight: 500;
        text-shadow: 4px -2px 5px rgba(219, 102, 135, 0.082);
}

.card-sakura {
    padding: 20px;
}

.card-sakura :first-child {
    display: flex;
    flex-direction: row;
}

.card-sakura img {
    width: 27px;
    height: auto;
}

.card-sakura h1 {
    font-size: 24px;
    color: white;
    padding-left: 4px;
    text-shadow: 4px -2px 5px rgba(219, 102, 135, 0.082);
}
.card-sakura h2{
    color: white;
    font-size: 16px;
    text-shadow: 4px -2px 5px rgba(219, 102, 135, 0.082);
}
.card-sakura p{
    color:white;
    font-size: 12px;
    text-shadow: 4px -2px 5px rgba(219, 102, 135, 0.082);
}
.card-sakura > :last-child{
    padding-left:27px ;
}
.dark-card{
    background-color: #ffc4c6 !important;
}
.dark-card *{
    background-color: #ffc4c6 !important;
}

.contenido .section > h1{
    color: #ff8fae;
    font-size: 35px;
}
footer{
    height: 200px;
    background-color: #ff8fae;
}