/* ==========================================================================
   Variables Globales y Paleta de Colores
   ========================================================================== */
:root {
    --blanco: #ffffff;
    --obscuro: #212121;
    --primario: #ff07ff;
    --secundario: #ff0077;
    --gris: #757575;
    --grisclaro: rgb(158, 155, 155);
    --fuente-principal: rgb(61, 236, 8);
}

/* ==========================================================================
   Configuración Base y Hack de Box Model (1rem = 10px)
   ========================================================================== */
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    background-image: linear-gradient(to top, var(--grisclaro) 2%, var(--blanco) 100%);
    font-family: Arial, Helvetica, sans-serif;
}

/* ==========================================================================
   Tipografía y Títulos
   ========================================================================== */
h1 {
    font-size: 1.4rem;
}

h1 span {
    font-size: 1.4rem;
}

h1, h2, h3 {
    text-align: center;
}

h2 {
    font-size: 2.4rem;
    text-transform: uppercase;
}

.titulo {
    font-family: 'Allison', cursive;
    text-align: center;
    text-transform: uppercase;
    font-size: 3.5rem;
}

.subtitulo {
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
}

/* ==========================================================================
   Estructuras, Contenedores y Utilidades de Texto
   ========================================================================== */
.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

.centrado {
    text-align: center;
    align-items: center;
}

.textocentrado {
    text-align: center;
    font-size: 2rem;
}

.separacionarriba {
    padding-top: 2rem;
}

.separacionabajo {
    padding-bottom: 1rem;
}

.color-bl {
    font-family: 'Allison', cursive;
    text-align: left;
    color: var(--blanco);
    font-size: 15rem;
}

/* Componente de Sombra y Tarjetas */
.sombra {
    padding: 2rem;
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    -webkit-box-shadow: 0px 11px 15px -9px rgba(0,0,0,0.63);
    -moz-box-shadow: 0px 11px 15px -9px rgba(0,0,0,0.63);
    box-shadow: 0px 11px 15px -9px rgba(0,0,0,0.63);
}

/* ==========================================================================
   Navegación y Menú
   ========================================================================== */
.nav-bg {
    background-color: var(--secundario);
}

nav {
    text-align: center;
}

.navini {
    display: flex;
    flex-direction: column;
}

.navini * {
    display: block;
    text-align: center;
    padding: 1rem;
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
}

.navini *:hover {
    background-color: var(--primario);
    color: var(--obscuro);
}

@media (min-width: 925px) {
    .navini {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Botones y Elementos de Acción
   ========================================================================== */
.boton {
    display: inline-block;
    background-color: rgb(0, 204, 255);      
    color: var(--blanco);
    padding: 1rem 3rem;    
    margin-top: 3rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: .5rem;
    width: 90%;
    text-align: center;
    border: none;
}

.boton:hover {
    cursor: pointer;
}

@media (min-width: 900px) {
    .boton {
        width: auto;
    }
}

/* ==========================================================================
   Secciones Especiales, Hero y Bloques de Fondo
   ========================================================================== */
.blogg {
    text-align: center;
    align-items: center;
    background-image: url(../img/estilo\ y\ glam.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
}

.hero {
    background-image: url(../img/acondicionador.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    position: relative;
    margin-bottom: 2rem;
}

.contenido-hero {
    position: absolute; 
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Corregido 'right' por una propiedad válida de flexbox */
}

.testimonio {
    /* Lista para añadir estilos personalizados a tus reseñas si lo requieres */
}