/*Normalización de estilos*/
/***********************************************/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*tipografia*/
    --font-oswald: 'Oswald', 'sans-serif';
    --font-inter: 'Inter','sans-serif';
    --font-Raleway: 'Raleway','sans-serif';
    /*tamaños de fuentes*/
    --font-titulos: 1.9em;
    --font-subtitulos: 1.3em;
    --font-menosSubtitulos: 1.1em;
    --font-peque: 0.7em;
    /*Colores usados en el sitio*/
    --gris-oscuro: #212529;
}

/***********************************************/
/*Configuraciones generales*/
/***********************************************/
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 90%;
    color: black;
    font-family: var(--font-inter);
}



.d-flex {
    display: flex;
    flex-direction: column;
}

.min-vh-100 {
    min-height: 100vh; /* Hace que ocupe toda la altura del viewport */
}

.flex-grow-1 {
    flex-grow: 1; /* Permite que el contenido principal crezca y llene el espacio disponible */
}

.container {
    max-width: 1200px;
    min-width: 200px;
    margin: auto;
}

ul, ol {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit; /*Color heredado*/
    color: inherit;
}

/************************************************/
/*Imagen de la cabezera*/
/*Elementos de la cabecera */
/*La cabecera*/
header {
    position: relative;
    z-index: 0; /* Asegurarse de que el header esté detrás de la imagen */
}


/*Imagen del logo*/
.full-width-image {
    /*width: 100%;
height: auto;
display: block;
margin: 0;
padding: 0;*/
    width: 100%;
    display: block;
}

/*Contenedor de la imagen ppal*/
.image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display:block;
}

/*Imagen ppal*/
.header-img {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100px; /* Ajusta el tamaño según sea necesario */
}

/*cuadro de texto sobre la imagen ppal*/
/*modificar cuando este a un tamaño movil PEND  */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.promovemos {
    font: var(--main-font);
    font-size: 35px;
    font-weight: bold;
}

/***********************************************/
/***********************************************/
/*Tarjeta*/

#detalle_card {
    color: gray;
    font-size: 1em;
}

.card-img-top {
    width: 240px;
    height: 200px;
    object-fit: cover;
}
/***********************************************/
.detallePost_img {
    width: 300px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
    /* height: 200px; */
}