/*
 Theme Name:   Lucille Child
 Theme URI:    https://example.com/
 Description:  Child theme for Lucille - preserves your customizations during updates.
 Author:       Gustavo Laveaga | Wishful Thinker
 Author URI:   https://example.com/
 Template:     lucille
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         child-theme, lucille
 Text Domain:  lucille-child
*/

/* Put your custom CSS below this line */
/* === ESTILO OSCURO AZUL TURQUESA CON EFECTO GLOW Y PULSO === */

/* Contenedor general */
.vc_tta-container {
  background-color: transparent !important;
}

/* Panel interno (contenido) */
.vc_tta-panels {
  background-color: #0a0a0a !important;
  color: #cccccc !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 10px !important;
  padding: 35px !important;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* Títulos dentro del contenido */
.vc_tta-panels h3 {
  color: #00bcd4 !important;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 5px;
  margin-top: 25px;
  transition: all 0.3s ease;
}
.vc_tta-panels h3:hover {
  text-shadow: 0 0 8px rgba(0,188,212,0.8);
}

/* Párrafos */
.vc_tta-panels p {
  color: #cccccc !important;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 15px;
}

/* Enlaces */
.vc_tta-panels a {
  color: #00bcd4 !important;
  text-decoration: none;
  border-bottom: 1px dotted #00bcd4;
  transition: all 0.3s ease;
}
.vc_tta-panels a:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
  text-shadow: 0 0 8px rgba(0,188,212,0.7);
}

/* Tabs (botones de idioma) */
.vc_tta-tabs .vc_tta-tab > a {
  background-color: #111 !important;
  color: #00bcd4 !important;
  border: 1px solid #1a1a1a !important;
  border-bottom: none !important;
  border-radius: 6px 6px 0 0 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 rgba(0,188,212,0);
}
.vc_tta-tabs .vc_tta-tab > a:hover {
  box-shadow: 0 0 10px rgba(0,188,212,0.5);
  color: #ffffff !important;
}

/* Tab activo */
.vc_tta-tabs .vc_tta-tab.vc_active > a {
  background-color: #00bcd4 !important;
  color: #000 !important;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0,188,212,0.7);
}

/* Borde del tab activo */
.vc_tta-tabs.vc_tta-style-classic .vc_tta-tab.vc_active > a {
  border-color: #00bcd4 !important;
}

/* Titular principal */
h1.privacy-title {
  text-align: center;
  color: #00bcd4;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0,188,212,0.6);
  animation: glowPulse 4s ease-in-out infinite;
}

/* Animación del “pulso de luz” */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px rgba(0,188,212,0.4),
                 0 0 16px rgba(0,188,212,0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(0,188,212,0.9),
                 0 0 40px rgba(0,188,212,0.6);
  }
  100% {
    text-shadow: 0 0 8px rgba(0,188,212,0.4),
                 0 0 16px rgba(0,188,212,0.2);
  }
}

/* Separadores */
.vc_tta-panels hr {
  border: 0;
  border-top: 1px solid #1a1a1a;
  margin: 25px 0;
}

/* Azul principal de tu sitio */
:root {
  --accent-color: #00bcd4; 
}