/* =========================================
   1. VARIABLES DE COLOR Y CONFIGURACIÓN
   ========================================= */
:root {
    --rosa-principal: #e15eb1;
    --rosa-fondo: #fdf0f6;
    --negro-borde: #333333;
    --blanco: #ffffff;
}

* {
    box-sizing: border-box;
}

/* =========================================
   2. ESTILOS DE CUERPO
   ========================================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Coming Soon', cursive;
    background-color: var(--rosa-fondo);
    background-image: url('/libreriaelplacerdeloslibros/../../images/fondo-magico-texturizado.jpg'); 
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    color: var(--negro-borde);
}

/* =========================================
   3. HEADER Y REDES SOCIALES
   ========================================= */
.social-container {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 50px;
    padding-left: 50px;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons img {
    width: 38px;
    height: 38px;
    margin-left: 12px;
}

/* =========================================
   4. BANNER GASTOS DE ENVÍO
   ========================================= */
.promo-banner {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.acuarela-btn-banner {
    display: inline-flex;
    padding: 5px;
    background: conic-gradient(
        from 180deg at 50% 50%,
        #e15eb1 0deg,
        #f5a3d4 90deg,
        #c04095 180deg,
        #e15eb1 270deg,
        #f5a3d4 360deg
    );
    border: 1px solid #000;
    border-radius: 35px;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.5), 0px 4px 10px rgba(225, 94, 177, 0.4);
}

.acuarela-inner-banner {
    background-color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    color: #444;
    font-family: 'Coming Soon', cursive;
    font-weight: bold;
}

/* =========================================
   5. LOGO, BUSCADOR Y ACCIONES
   ========================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    height: 140px;
}

.logo-area { width: 250px; }
.main-logo { height: 110px; width: auto; }

.search-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.search-bar-artistic {
    display: flex;
    padding: 5px; 
    background: conic-gradient(
        from 0deg at 50% 50%,
        #c04095 0deg,
        #e15eb1 120deg,
        #f5a3d4 240deg,
        #c04095 360deg
    );
    border: 1px solid #000;
    border-radius: 35px;
    width: 500px;
    height: 55px;
    overflow: hidden;
    align-items: center;
}

.search-bar-artistic input {
    background-color: #fff;
    border: none;
    border-radius: 30px 0 0 30px;
    height: 100%;
    flex-grow: 1;
    padding: 0 20px;
    outline: none;
    font-family: 'Coming Soon', cursive;
}

.search-btn {
    background: transparent; 
    border: none;
    height: 100%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
}

.action-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    width: 250px;
}

.action-img {
    width: 55px;
    height: 55px;
}

/* =========================================
   6. NAVEGACIÓN PRINCIPAL
   ========================================= */
.nav-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    background-color: transparent;
}

.acuarela-btn {
    display: inline-flex;
    padding: 4px; 
    background-color: #e15eb1;
    border: 1px solid #000;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.acuarela-inner {
    background-color: #fff;
    padding: 8px 18px;
    border-radius: 16px;
    color: #444;
    font-family: 'Just Another Hand', cursive;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.dot-separator {
    width: 10px;
    height: 10px;
    background-color: #e15eb1;
    border-radius: 50%;
    flex-shrink: 0;
}

.select-arrow {
    background-color: #e15eb1;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e15eb1;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 5px;
    list-style: none;
    z-index: 1000;
}

.dropdown-content li {
    background-color: #fff;
    margin: 2px;
    border-radius: 10px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #e15eb1;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.custom-dropdown:hover .dropdown-content {
    display: block;
}

.has-submenu:hover > .sub-menu {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #e15eb1;
    border: 1px solid #000;
    padding: 5px;
    border-radius: 15px;
}

/* =========================================
   7. CLASE PARA TÍTULOS CON MANCHA ACUARELA
   ========================================= */
.titulo-acuarela-real {
    position: relative;
    display: inline-block;
    padding: 30px 80px; /* Ajusta esto según el tamaño de tu mancha */
    font-family: 'Coming Soon', cursive;
    color: #000;
    text-align: center;
    z-index: 1;
}

.titulo-acuarela-real::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Aquí es donde usaremos tu imagen subida a IONOS */
    background-image: url('images/fondo-titulo-acuarela.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* Ajusta el ancho y alto para que cubra el texto como en la foto */
    width: 120%; 
    height: 120%;
    
    z-index: -1; /* Para que la mancha quede detrás del texto */
}

/* =========================================
   8. ESTILOS ESPECÍFICOS PARA LEER MAS
   ========================================= */

/* --- 8.1 Menú en Header (Cajitas Rosas) --- */
.nav-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.nav-menu-container .acuarela-btn {
    text-decoration: none;
    display: inline-block;
}

/* Perfilado negro para las cajitas del menú superior */
.nav-menu-container .acuarela-inner {
    border: 2px solid #000 !important;
}

.dot-separator {
    width: 12px;
    height: 12px;
    background-color: var(--rosa-principal);
    border-radius: 50%;
}

/* --- 8.2 Cajas de Ayuda (Inicio del Main) --- */
.grid-ayuda-leermas {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.bloque-fairy-card {
    background: #fff;
    border: 3.5px solid var(--rosa-principal); /* Borde rosa */
    border-radius: 40px;
    padding: 35px;
    width: 350px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 0 1.5px #000; /* Perfilado negro exterior */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.bloque-fairy-card:hover {
    transform: translateY(-10px);
    background-color: var(--rosa-fondo);
}

.icono-ayuda-circulo {
    width: 80px;
    height: 80px;
    background: var(--rosa-fondo);
    border-radius: 50%;
    border: 2px solid #000; /* Perfilado negro en el círculo */
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 8.3 Secciones de Puntos (Dashed) --- */
.seccion-puntos-fairy {
    border: 3px dashed var(--rosa-principal); /* El estilo que te encanta */
    border-radius: 50px;
    padding: 40px;
    max-width: 950px;
    margin: 0 auto 40px auto;
    background-color: #fff;
    position: relative;
}

.titulo-info-fairy {
    font-family: 'Coming Soon', cursive;
    text-align: center;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 2rem;
}

/* --- 8.4 Tabla y FAQ Automática --- */
.tabla-correos {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Patrick Hand', cursive;
}

.tabla-correos th {
    background-color: var(--rosa-fondo);
    border: 2px solid var(--rosa-principal);
    padding: 12px;
}

.tabla-correos td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: center;
}

.lista-faq-artistic {
    padding: 0;
    margin-top: 20px;
}

.lista-faq-artistic li {
    list-style: none;
    padding: 10px;
    border-bottom: 1px dotted var(--rosa-principal);
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
}

.lista-faq-artistic a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.lista-faq-artistic a:hover {
    color: var(--rosa-principal);
}