/*
Theme Name: Supernova Tattoo Theme
Theme URI: https://supernovatattoo.example
Author: Supernova Tattoo
Author URI: https://www.instagram.com/supernova.tattoos
Description: Tema base funcional para landing de Supernova Tattoo.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: supernova-tattoo
*/

#bg {
  opacity: 0.42;
  overflow: hidden;
}

body.theme-day #bg:before {
  background-color: rgba(20, 35, 52, 0.25);
}

body.theme-night #bg:before {
  background-color: rgba(3, 7, 18, 0.6);
}

#bg .bg-slide {
  -moz-transition: opacity 3s ease;
  -webkit-transition: opacity 3s ease;
  -ms-transition: opacity 3s ease;
  transition: opacity 3s ease;
  background-size: cover;
  height: 100%;
  left: 0;
  opacity: 0;
  background-position: center;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 150%;
}

#bg .bg-slide.visible {
  -moz-animation: bg-pan 45s linear infinite;
  -webkit-animation: bg-pan 45s linear infinite;
  -ms-animation: bg-pan 45s linear infinite;
  animation: bg-pan 45s linear infinite;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

#bg .bg-slide.visible.top {
  z-index: 2;
}

@keyframes bg-pan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

.social-cta {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2b2b2b !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.compact-actions {
  margin-top: 1rem;
}

.compact-actions .button {
  min-width: 13rem;
}

.entry {
  margin-bottom: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10002;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  border-bottom: 0;
}

@media (max-width: 680px) {
  .whatsapp-float span:last-child {
    display: none;
  }
}


.supernova-logo-container { /* Reemplaza por la clase real de tu imagen */
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 70%;
    padding-top: 8%;
}

/* Si es un contenedor flexible */
.header-container-clase { 
    display: flex;
    justify-content: center;
    align-items: center;
}
