/* --- ESTILOS GENERALES --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: white;
    color: #1a1a1a;
    max-width: 100vw;
    overflow-x: hidden;
}

/* --- HEADER Y NAVEGACIÓN --- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 1rem 2rem;
}

nav {
    margin: auto;
    width: fit-content;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style-type: none;
    font-size: 17.6px;
    padding: 5px;
    margin: 10px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s ease;
}

nav ul li:hover {
    border-bottom: 1px solid black;
}

nav ul li a {
    text-decoration: none;
    color: black;
}

/* LOGO */
.logo-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover,
.logo:focus {
    transform: scale(1.05);
    outline: none;
}

/* --- CABECERA CON IMAGEN --- */
section.cabecera {
    width: 100%;
    max-width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 241, 241, 0.249);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h2 {
    font-size: 3rem;
    font-weight: bold;
}

.overlay p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* --- SECCIÓN CONTAINER-PAGE --- */
.container-page {
    display: flex;
    justify-content: center; 
    padding: 20px;
    margin-top: 20px;
}

.container-page .card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 20px;
    width: 100%;
    max-width: 800px;
    gap: 24px;
    box-sizing: border-box; 
}

.container-page .card img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.container-page .card .text {
    width: 50%;
    margin-left: 0; 
    text-align: left;
}

/* ESTILO DE .CONTAINER-PAGE */
.container-page main section {
    display: flex;
    align-items: center;
    background-color: white; 
    border-radius: 0.75rem; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
    padding: 20px;
    width: 100%;
    max-width: 800px; 
    gap: 24px; 
}

.container-page main section img {
  width: 50%; 
  height: auto; 
  border-radius: 8px; 
}

.container-page main section .text {
    margin-left: 20px;
    width: 50%; 
}

.container-page .card .text h1 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.container-page .card .text p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
}

/* --- BOTÓN CONTACTAME  --- */
.container-page a {
    background-color: #1e40af;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 80px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.container-page a:hover {
    background-color: #2563eb;
}

  /* 4 SECCIONES DEL INICIO */
/* Contenedor general */
.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Cada fila con dos columnas */
.servicios-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 80px; 
    padding: 40px 20px;
}

/* Bloque de columna */
.servicios-grid {
    display: flex;               
}

/* Tarjeta interior (cartas, sesiones, limpiezas, rituales) */
.servicios-grid > div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Títulos */
.servicios-grid h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 28px 0;
    text-align: center; 
    color: #5d3a3a;
}

/* Contenido de la tarjeta (service-item, service-item2, etc.) */
.servicios-grid [class^="service-item"] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;                     
}

/* Imagen con mismo tamaño en todas las tarjetas */
.servicios-grid [class^="service-item"] a {
    display: block;
}

.servicios-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;     
    object-fit: cover;
    object-position:  top;
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.servicios-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* Texto */
.servicios-grid p {
    font-size: 1rem;
    line-height: 1.6;
    color: #404040;
    margin: 0;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

/* SECCION LECTURAS DE TAROT */

/* container-page3 */
.container-page3 {
    background-color: #fcf0da;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px;
    width: 100%;
    box-sizing: border-box;
}

.card-tarot {
    display: flex;
    flex-direction: row; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center; 
}

.card-tarot img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card-tarot .text2 {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-page3 h2 {
    font-size: 2rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Cuarta sección */
.cuarta-seccion {
    background-color: #f5e9c3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px; 
    width: 100%;
    box-sizing: border-box;
}

.card-tarot-2 {
    display: flex;
    flex-direction: row-reverse; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center; 
}

.card-tarot-2 img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card-tarot-2 .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Estilos tipográficos */
.container-page3 h1 {
    font-size: 2.5rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.container-page3 p, li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.container-page3 ul {
    padding-left: 0;
    list-style: none;
}

.container-page3 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.container-page3 li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.cuarta-seccion h2 {
    font-size: 1.8rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.cuarta-seccion p, li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.cuarta-seccion ul {
    padding-left: 0;
    list-style: none;
}

.cuarta-seccion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.cuarta-seccion li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
} 

/* SECCION SESIONES MEDIUM */

/* estilos de .container-page2 */
.container-page2 {
    background-color: #fcf0da;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px;
    width: 100%;
    box-sizing: border-box;
}

.card {
    display: flex;
    flex-direction: row; /* Acomoda imagen a la izquierda y texto a la derecha */
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center;
}

.card img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-page2 h2 {
    font-size: 2rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Segunda sección */
.segunda-seccion {
    background-color: #f5e9c3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px; 
    width: 100%;
    box-sizing: border-box;
}

.card2 {
    display: flex;
    flex-direction: row-reverse; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center; 
}

.card2 img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card2 .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Estilos tipográficos */
.container-page2 h1 {
    font-size: 2.5rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.container-page2 p, li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.container-page2 ul {
    padding-left: 0;
    list-style: none;
}

.container-page2 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.container-page2 li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.segunda-seccion h2 {
    font-size: 1.8rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.segunda-seccion p, li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.segunda-seccion ul {
    padding-left: 0;
    list-style: none;
}

.segunda-seccion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.segunda-seccion li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* SECCION LIMPIEZAS ENERGETICAS */

.content-page-limpiezas {
    padding: 20px;
    background-color: #fffef8;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6b3e26;
    margin: 50px 10px;
}

/* Contenedor de artículos */
.container-limpiezas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

/* Espaciado adicional opcional */
.mb-20 {
    margin-bottom: 35px;
}

/* Estilo común para todos los artículos */
.box,
.box1,
.box2,
.box3,
.box4 {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 300px;
    flex: 1 1 280px;
}

.box:hover,
.box1:hover,
.box2:hover,
.box3:hover,
.box4:hover {
    transform: translateY(-5px);
}

/* Imágenes */
.box img,
.box1 img,
.box2 img,
.box3 img,
.box4 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Texto dentro de cada tarjeta */
.text-limpiezas {
    padding: 20px;
    text-align: center;
}

.text-limpiezas h2 {
    font-size: 1.3rem;
    color: #402218;
    margin-bottom: 10px;
}

.text-limpiezas p {
    margin: 6px 0;
    font-size: 1.1rem;
}

/* RITUALES */
.content-page-rituales {
    padding: 20px;
    background-color: #fffef8;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6b3e26;
    margin: 50px 10px;
}

/* Contenedor de artículos */
.container-rituales {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

/* Espaciado adicional opcional */
.mb-20 {
    margin-bottom: 35px;
}

/* Estilo común para todos los artículos */
.box-ritual1,
.box-ritual2,
.box-ritual3,
.box-ritual4,
.box-ritual5 {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 300px;
    flex: 1 1 280px;
}

.box-ritual1:hover,
.box-ritual2:hover,
.box-ritual3:hover,
.box-ritual4:hover,
.box-ritual5:hover {
    transform: translateY(-5px);
}

/* Imágenes */
.box-ritual1 img,
.box-ritual2 img,
.box-ritual3 img,
.box-ritual4 img,
.box-ritual5 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Texto dentro de cada tarjeta */
.text-rituales {
    padding: 20px;
    text-align: center;
}

.text-rituales h2 {
    font-size: 1.3rem;
    color: #402218;
    margin-bottom: 10px;
}

.text-rituales p {
    margin: 6px 0;
    font-size: 1.1rem;
}

/* SECCION PRINCIPAL LIMPIEZAS ENERGETICAS (TODAS LAS ETIQUETAS) */

/* Container-page1 */
.container-page1 {
    background-color: #fcf0da;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px;
    width: 100%;
    box-sizing: border-box;
}

.card-limpiezas1 {
    display: flex;
    flex-direction: row; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center;
}

.card-limpiezas1 img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card-limpiezas1 .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-page1 h2 {
    font-size: 2rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Tercera sección */
.tercera-seccion {
    background-color: #f5e9c3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px; 
    width: 100%;
    box-sizing: border-box;
}

.card-limpiezas2 {
    display: flex;
    flex-direction: row-reverse; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center; 
}

.card-limpiezas2 img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card-limpiezas2 .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Estilos tipográficos */
.container-page1 h1 {
    font-size: 2.5rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.quinta-seccion h1 {
    font-size: 2.5rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.container-page1 p, li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.quinta-seccion p, li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.container-page1 ul {
    padding-left: 0;
    list-style: none;
}

.quinta-seccion ul {
    padding-left: 0;
    list-style: none;
}

.container-page1 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.quinta-seccion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.container-page1 li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.quinta-seccion li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.tercera-seccion h2 {
    font-size: 2.0rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.tercera-seccion p, li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.tercera-seccion ul {
    padding-left: 0;
    list-style: none;
}

.tercera-seccion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.tercera-seccion li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* QUINTA SECCION */

.quinta-seccion {
    background-color: #fcf0da;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 30px 10px;
    width: 100%;
    box-sizing: border-box;
}

.card-limpiezas3 {
    display: flex;
    flex-direction: row; 
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 30px 10px;
    box-sizing: border-box;
    align-items: center; 
}

.card-limpiezas3 img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.card-limpiezas3 .text {
    width: 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

.quinta-seccion h2 {
    font-size: 2rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* SECCION TIENDA */
/* Tipografía para la sección de cartas */
.content-page-cartas h2 {
    font-size: 2.5rem;
    color: #5d3a3a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.content-page-cartas p, 
.content-page-cartas li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.content-page-cartas ul {
    padding-left: 0;
    list-style: none;
}

.content-page-cartas li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.content-page-cartas li:before {
    content: "•";
    color: #d4af37;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Contenedor general */
.container-cartas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
}

/* Caja de carta */
.box-cartas {
    width: 400px; 
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.box-cartas:hover {
    transform: scale(1.03);
}

/* Imagen de la carta */
.box-cartas img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texto de la carta */
.text-cartas {
    padding: 15px;
    text-align: center;
}

.text-cartas h2 {
    font-size: 1.5rem;
    color: #5d3a3a;
    margin-bottom: 10px;
}

.text-cartas p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* SECCION SOBRE MI */

/* container-page */
.container-page-sobreMi {
    display: flex;
    justify-content: center; 
    padding: 20px;
    margin-top: 20px;
    margin-top: 0;
    padding-top: 0; /* Espacio superior para el header */
    padding-bottom: 50px; /* Espacio inferior para el footer */
}

.container-page-sobreMi .card-sobreMi {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(179, 163, 73, 0.4);
    padding: 20px;
    width: 100%;
    max-width: 800px;
    gap: 24px;
    box-sizing: border-box; /* para que padding no rompa el ancho */
}

.container-page-sobreMi .card-sobreMi img {
    width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.container-page-sobreMi .card-sobreMi .text {
    width: 60%;
    margin-left: 0; /* Elimina desplazamiento */
    text-align: left;
}

/* Este es el estilo del .container-page */
.container-page-sobreMi main section {
    display: flex;
    align-items: center;
    background-color: white; 
    border-radius: 0.75rem; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
    padding: 20px;
    width: 100%;
    max-width: 800px; 
    gap: 24px; 
}

.container-page-sobreMi main section img {
  width: 50%; 
  height: auto; 
  border-radius: 8px; /* Bordes redondeados para la imagen */
}

.container-page-sobreMi main section .text {
    margin-left: 20px; 
    width: 50%; 
}

.container-page-sobreMi .card-sobreMi .text h1 {
    font-size: 2.5rem;
    color: #b3a349;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.container-page-sobreMi .card-sobreMi .text p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
}

/* POLITICAS DE PRIVACIDAD/ AVISO LEGAL */
.container3 {
    width: 800px;
    margin: auto;
    padding: 5px 15px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 80px;
}

.container3 h1 {
    text-align: center;
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.container3 h2 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.container3 p {
    margin-bottom: 15px;
}

.container3 ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.container3 ul li {
    margin-bottom: 10px;
}

.container3 a {
    color: #3498db;
    text-decoration: none;
}

.container3 a:hover {
    text-decoration: underline;
}

/* --- ESTILOS PARA LA SECCIÓN DE POLÍTICAS DE PRIVACIDAD,  AVISO LEGAL, COOKIES --- */
.container3 {
    width: 95%;
    max-width: 600px;
    margin: 20px auto 60px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.container3 h1 {
    font-size: 1.5em;
    margin: 16px 0;
}

.container3 h2 {
    font-size: 1.4em;
    margin-top: 24px;
    margin-bottom: 12px;
}

.container3 p,
.container3 ul {
    font-size: 16px;
    line-height: 1.6;
}

.container3 ul {
    padding-left: 13px;
}


/* --- FOOTER --- */
footer {
    background-color: white;
    border-top: 1px solid black;
    text-align: center;
}

footer p {
    font-size: 13px;
}

.footer-menu {
    display: flex;
    gap: 24px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 13px;
    margin-bottom: auto;
    font-size: 13px;
}

.footer-menu li {
    position: relative;
    display: inline-block;
    padding-left: 12px; 
    margin-right: 15px; 
    font-size: 14px; 
    line-height: 1.5;
}

.footer-menu li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #1e40af;
}

.footer-menu a {
    text-decoration: none;
    color: #000;
}

/* --- REDES SOCIALES --- */
.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    padding: 6px;
}

.social-icons a img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* PARA OCULTAR EN PC EL MENU HAMBURGUESA */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

/* Fondo bloqueador */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

/* Caja del banner */
#cookie-banner {
    background-color: #fff4e5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    max-width: 90%;
    width: 400px;
    text-align: center;
    color: #5d3a3a;
    font-size: 1rem;
}

/* Botón */
#cookie-banner button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d4af37;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#cookie-banner button:hover {
    background-color: #b8952f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.nav-menu {
    display: none;
    flex-direction: column;
    background-color: #f5e1b5; 
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-top: 1px solid #ccc;
}

.nav-menu.active {
    display: flex;
}

.nav-menu ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin: 10px 0;
    text-align: center;
}

.hamburger {
    display: block;
}

.container-page {
    padding: 10px;
}

.container-page .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container-page .card img {
    width: 100%;
    border-radius: 12px;
    filter: brightness(1.15);
}

.container-page .card .text {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
}

.container-page .card .text h1 {
    font-size: 22px;
}

.container-page .card .text p {
    font-size: 16px;
}

/* Botón de contacto */
.container-page a {
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    background-color: #1e40af;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.container-page a:hover {
    background-color: #2563eb;
    align-items: center;
}

/* 4 SECCIONES PAGINA DE INICIO */
.servicios-row {
    grid-template-columns: 1fr; /* Apilar columnas */
    gap: 50px;
    padding: 20px;
}

.servicios-grid h1 {
    font-size: 1.4rem;
    margin-bottom: 24px; 
    text-align: center;
}

.servicios-grid p {
    font-size: 0.95rem;
}

/* LECTURAS TAROT */
.card-tarot {
    flex-direction: column; 
    gap: 24px;
    padding: 20px 16px;
}

.card-tarot img {
    width: 80%;
    max-width: 300px;
}

.card-tarot .text2 {
    width: 100%;
    padding: 0;
    text-align: center;
}

.container-page3 h2 {
    font-size: 1.5rem;
}

/* CUARTA SECCIÓN */
.card-tarot-2 {
    flex-direction: column; 
    gap: 24px;
    padding: 20px 16px;
}

.card-tarot-2 img {
    width: 80%;
    max-width: 300px;
}

.card-tarot-2 .text {
    width: 100%;
    padding: 0;
    text-align: center;
}

.cuarta-seccion {
    gap: 40px;
    padding: 24px 12px;
}

/* SESIONES MEDIUM */
.card {
    flex-direction: column;
    gap: 24px;
    padding: 20px 16px;
}

.card img {
    width: 80%;
    max-width: 300px;
}

.card .text {
    width: 100%;
    padding: 0;
    text-align: center;
}

/* CONTAINER-PAGE2 */
.container-page2 {
    gap: 40px;
    padding: 24px 12px;
}

.container-page2 h2 {
    font-size: 1.5rem;
}

.card2 {
flex-direction: column;
    gap: 24px;
    padding: 20px 16px;
}

.card2 img {
    width: 80%;
    max-width: 300px;
}

.card2 .text {
    width: 100%;
    padding: 0;
    text-align: center;
}

.segunda-seccion {
    gap: 40px;
    padding: 24px 12px;
}

/* SECCIÓN LIMPIEZAS */
.card-limpieza {
    flex-direction: column; /* Imagen encima, texto debajo */
    gap: 20px;
    padding: 20px 16px;
    align-items: center;
    text-align: center;
}

.card-limpieza img {
    width: 80%;
    max-width: 300px;
    border-radius: 12px;
}

.card-limpieza .text {
    width: 100%;
    padding: 0;
}

/* SECCION MAL DE OJO */
    .card-limpiezas1,
    .card-limpiezas2,
    .card-limpiezas3 {
        display: flex;
        flex-direction: column; /* Imagen arriba, texto debajo */
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .card-limpiezas1 img,
    .card-limpiezas2 img,
    .card-limpiezas3 img {
        width: 90%;
        max-width: 250px; /* un poco más pequeña */
        border-radius: 12px;
        height: auto;
    }

    .card-limpiezas1 .text2,
    .card-limpiezas2 .text,
    .card-limpiezas3 .text {
        width: 100%;
        padding: 0 15px;
    }

/* SECCION TIENDA */
    .container-cartas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .box-cartas {
        width: 90vw; /* ocupa casi todo el ancho disponible */
        max-width: 400px;
    }

    .content-page-cartas h2 {
        font-size: 1.7rem;
    }

    .text-cartas h2 {
        font-size: 1.2rem;
    }

    .content-page-cartas p,
    .content-page-cartas li,
    .text-cartas p {
        font-size: 0.95rem;
    }

    .content-page-cartas li:before {
        font-size: 1.3rem;
        top: -3px;
    }


/* SOBRE MI */
.container-page-sobreMi .card-sobreMi {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
    text-align: center;
}

.container-page-sobreMi .card-sobreMi img {
    width: 80%;
    max-width: 280px;
}

.container-page-sobreMi .card-sobreMi .text {
    width: 100%;
    padding: 0;
    text-align: center;
}

.container-page-sobreMi {
    padding: 20px 12px 40px;
}

/* SOCIAL-ICONS */
.social-icons {
    position: fixed;
    bottom: 16px;
    right: 16px; /* seguimos alineados a la derecha */
    flex-direction: column; /* en línea vertical */
    gap: 10px;
    z-index: 1000;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    padding: 4px;
}

/* FOOTER */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding-bottom: 8px;
}

.footer-menu li {
    white-space: nowrap;
    padding-left: 18px;
    position: relative;
    font-size: 13px;
}

.footer-menu li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #1e40af;
}
}



