@charset "UTF-8";
html, body {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-snap-type: y mandatory;
}

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
  color: #333;
  background: radial-gradient(circle at top left, #f0f0ff, #e8e8fa 70%);
  background-attachment: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visual-h1 {
  font-family: "Baloo 2", sans-serif;
  font-size: 3.5em;
  font-weight: bold;
  color: #A06CD5;
  margin-bottom: 20px;
}

.visual-h2 {
  font-family: "Jost", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  color: #333;
  margin-top: 40px;
  margin-bottom: 15px;
}

.site-name {
  font-family: "Ubuntu Condensed", sans-serif;
}

.main-header {
  color: #fff;
  background-color: #A06CD5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
.main-header span {
  color: #fff;
}
.main-header .space {
  display: none;
}
.main-header .container {
  background-color: #A06CD5;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}
.main-header .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.main-header .site-logo {
  height: 50px;
  width: auto;
}
.main-header .header-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1002;
}
@media (max-width: 767px) {
  .main-header {
    height: 65px;
    padding: 0 15px;
  }
  .main-header .site-name {
    display: none;
  }
  .main-header .space {
    display: block;
  }
}

.menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1005;
  color: #fff;
  display: none;
}
.menu-toggle .material-symbols-outlined {
  font-size: 36px;
  transition: transform 0.3s ease-in-out 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
    position: relative;
  }
}

.main-nav {
  background-color: #A06CD5;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  font-family: "Rubik", sans-serif;
}
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  padding: 8px 15px;
  position: relative;
  border-radius: 5px;
  z-index: 0;
  transition: color 0.3s ease-in-out;
  overflow: hidden;
}
.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  z-index: -1;
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 6px #5ec7f9;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.main-nav a:hover {
  color: #333;
}
.main-nav a:hover::before {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: -70dvw;
    right: auto;
    width: 70dvw;
    height: 100vh;
    background-color: rgba(160, 108, 213, 0.98);
    padding-top: 95px;
    padding-left: 20px;
    padding-right: 0;
    transform: translateX(0);
    z-index: 1004;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: left 0.3s cubic-bezier(0.23, 1, 0.32, 1) opacity 0.2s ease-out visibility 0.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: none;
    text-align: left;
    padding-top: 20px;
  }
  .main-nav a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1.8em;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
  }
  .main-nav a::before {
    display: none;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #8fd8fb;
    transition: width 0.3s ease;
  }
  .main-nav a:hover::after {
    width: 80%;
  }
  .main-nav a:hover {
    color: white;
    transform: translateY(-3px);
  }
  .main-nav a:hover::after {
    width: 80%;
  }
  .menu-open .main-nav a {
    animation: slideInLink 0.4s ease-out forwards;
  }
  .menu-open .main-nav a:nth-child(1) {
    animation-delay: 0.1s;
  }
  .menu-open .main-nav a:nth-child(2) {
    animation-delay: 0.15s;
  }
  .menu-open .main-nav a:nth-child(3) {
    animation-delay: 0.2s;
  }
  .menu-open .main-nav a:nth-child(4) {
    animation-delay: 0.25s;
  }
  .menu-open .main-nav a:nth-child(5) {
    animation-delay: 0.3s;
  }
  .menu-open .main-nav a:nth-child(6) {
    animation-delay: 0.35s;
  }
}

@media (max-width: 767px) {
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in-out visibility 0.1s ease-in-out ease-in-out;
  }
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .main-nav {
  left: 0;
  opacity: 1;
  visibility: visible;
}
body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  body.menu-open .menu-toggle {
    color: #fff;
    z-index: 1005;
  }
  body.menu-open .menu-toggle .material-symbols-outlined {
    transform: rotate(90deg);
  }
}

body.menu-closing .main-nav {
  animation: slideOutMenu 0.3s ease-out forwards;
}
body.menu-closing .menu-backdrop {
  opacity: 0;
  visibility: hidden;
}

@keyframes slideInLink {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutMenu {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.blog-post-hero-section {
  position: relative;
  padding: 4rem 0;
  background-color: #fbfbfb;
  text-align: center;
  overflow: hidden;
}
.blog-post-hero-section .blog-hero-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.blog-post-hero-section .blog-post-title {
  font-family: "Baloo 2", sans-serif;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .blog-post-hero-section .blog-post-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .blog-post-hero-section .blog-post-title {
    font-size: 1.8rem;
  }
}
.blog-post-hero-section .blog-post-meta {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 2rem;
}
.blog-post-hero-section .blog-post-meta strong {
  color: #A06CD5;
}

.blog-post-content-section {
  padding: 3rem 0;
  display: flex;
  background-color: transparent;
}
.blog-post-content-section .content-wrapper {
  display: flex;
  gap: 3rem;
}
@media (max-width: 992px) {
  .blog-post-content-section .content-wrapper {
    flex-direction: column;
  }
}
.blog-post-content-section .blog-main-article {
  flex: 3;
  max-width: 75%;
  padding-right: 2rem;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}
@media (max-width: 992px) {
  .blog-post-content-section .blog-main-article {
    max-width: 100%;
    padding-right: 0;
  }
}
.blog-post-content-section .blog-main-article p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-post-content-section .blog-main-article p strong, .blog-post-content-section .blog-main-article p b {
  color: #A06CD5;
  font-weight: 700;
}
.blog-post-content-section .blog-main-article ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  list-style: disc;
}
.blog-post-content-section .blog-main-article ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.blog-post-content-section .blog-main-article h3.blog-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  color: #A06CD5;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .blog-post-content-section .blog-main-article h3.blog-subtitle {
    font-size: 1.7rem;
  }
}
@media (max-width: 480px) {
  .blog-post-content-section .blog-main-article h3.blog-subtitle {
    font-size: 1.5rem;
  }
}
.blog-post-content-section .blog-main-article .info-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  border-left: 5px solid #A06CD5;
}
.blog-post-content-section .blog-main-article .price-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.blog-post-content-section .blog-main-article .price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #ddd;
  font-size: 1.05rem;
}
.blog-post-content-section .blog-main-article .price-list li:last-child {
  border-bottom: none;
}
.blog-post-content-section .blog-main-article .price-list li strong.price-value {
  color: #FF6347;
  font-size: 1.1rem;
}
.blog-post-content-section .blog-main-article .note {
  font-size: 0.9rem;
  color: gray;
  margin-top: 2rem;
  font-style: italic;
}
.blog-post-content-section .blog-main-article a {
  color: #A06CD5;
  text-decoration: underline;
}
.blog-post-content-section .blog-main-article a:hover {
  color: #8644ca;
}
.blog-post-content-section .blog-sidebar {
  flex: 1;
  max-width: 25%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .blog-post-content-section .blog-sidebar {
    max-width: 100%;
    margin-top: 3rem;
  }
}
.blog-post-content-section .blog-sidebar .sidebar-contact {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 3px solid #A06CD5;
  margin-top: 3rem;
}
.blog-post-content-section .blog-sidebar .sidebar-contact h4 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  color: #333;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}
.blog-post-content-section .blog-sidebar .sidebar-contact p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}
.blog-post-content-section .blog-sidebar .sidebar-contact .btn.full-width-btn {
  background-color: #A06CD5;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  display: block;
  margin-top: 1rem;
}
.blog-post-content-section .blog-sidebar .sidebar-contact .btn.full-width-btn:hover {
  background-color: #8644ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.blog-post-content-section .blog-sidebar .sidebar-contact .btn.full-width-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-post-content-section .blog-sidebar .sidebar-related {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 3px solid #A06CD5;
}
.blog-post-content-section .blog-sidebar .sidebar-related h4 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  color: #333;
  margin-top: 0;
  margin-bottom: 1rem;
}
.blog-post-content-section .blog-sidebar .sidebar-related p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.blog-post-content-section .blog-sidebar .sidebar-related .btn.full-width-btn {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
.blog-post-content-section .blog-sidebar .sidebar-related ul {
  list-style: none;
  padding: 0;
}
.blog-post-content-section .blog-sidebar .sidebar-related ul li {
  margin-bottom: 1rem;
}
.blog-post-content-section .blog-sidebar .sidebar-related ul li a {
  display: block;
  padding: 0.75rem;
  background-color: #f9f9f9;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 0.95rem;
}
.blog-post-content-section .blog-sidebar .sidebar-related ul li a:hover {
  background-color: #d3bbec;
  color: #333;
}

.main-footer {
  background-color: #B298DC;
  color: #fff;
  padding: 40px 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Nunito", sans-serif;
}
.main-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.main-footer .footer-logo img.footer-logo-img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}
.main-footer .footer-logo .footer-site-name {
  font-family: "Ubuntu Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-decoration: none;
}
.main-footer .footer-logo:hover img.footer-logo-img {
  transform: rotate(-5deg) scale(1.1);
}
.main-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-footer .footer-nav ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  transition: color 0.3s ease-in-out;
}
.main-footer .footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #5ec7f9;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.main-footer .footer-nav ul li a:hover {
  color: white;
}
.main-footer .footer-nav ul li a:hover::after {
  width: 100%;
}
.main-footer .footer-info {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}
.main-footer .footer-info a {
  color: #fff;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  transition: color 0.3s ease-in-out;
}
.main-footer .footer-info a:hover {
  color: #FFDB8B;
}
.main-footer .footer-info span {
  margin: 0 0.5rem;
  color: #fff;
  opacity: 0.6;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

@media (max-width: 767px) {
  main section {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .container {
    text-align: center;
  }
  .blog-main-article,
  .blog-post-meta,
  .blog-subtitle,
  .blog-main-article p,
  .blog-main-article ul {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .blog-main-article {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .blog-main-article p,
  .blog-main-article ul,
  .blog-main-article h3 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .container.content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .blog-main-article {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  .blog-main-article p,
  .blog-main-article ul,
  .blog-main-article h3 {
    text-align: center;
  }
  .blog-sidebar {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .blog-post-content-section .container {
    padding: 0 10px !important;
  }
  .blog-main-article {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;
    text-align: center;
  }
  .blog-main-article p,
  .blog-main-article h3,
  .blog-main-article ul {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .content-wrapper {
    flex-direction: column !important;
    align-items: center !important;
  }
  .blog-sidebar {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-main-article {
    padding: 0 15px 20px !important;
  }
}
/* --- Estilos del Scrollbar Global (Cohesivos con el Fondo de la Página) --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #A06CD5;
  border-radius: 5px;
  border: 2px solid #f8f8f8;
  -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #8644ca;
  border-color: #ebebeb;
}
::-webkit-scrollbar-thumb:active {
  background-color: #7a36be;
}

.semaforo-section {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  min-height: 250px;
}
@media (max-width: 767px) {
  .semaforo-section {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
}

.semaforo-container {
  min-width: 80px;
}

.semaforo-black {
  background-color: #000;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .semaforo-black {
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem;
  }
}

.light {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: grey;
  transition: background-color 0.3s ease;
}
.light.red {
  background-color: #e74c3c;
}
.light.yellow {
  background-color: #f1c40f;
}
.light.green {
  background-color: #2ecc71;
}
.light:hover, .light:focus {
  background-color: #bf2718;
  outline: none;
}
.light.red:hover, .light.red:focus {
  background-color: #b03a30;
}
.light.yellow:hover, .light.yellow:focus {
  background-color: #c9a30b;
}
.light.green:hover, .light.green:focus {
  background-color: #229a58;
}

.info-container {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #A06CD5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 150px;
}
@media (max-width: 767px) {
  .info-container {
    border-left: none;
    border-top: 4px solid #A06CD5;
    width: 100%;
    min-height: auto;
  }
}

.info-box {
  max-width: 500px;
  width: 100%;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.custom-tooltip {
  position: fixed;
  display: none;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.2s ease;
  max-width: 220px;
}

.tooltip-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.author-hover {
  cursor: pointer;
  text-decoration: none;
}
.author-hover a {
  text-decoration: none;
}

.anuncio {
  min-height: 250px;
  max-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  .info-card {
    display: none;
  }
}/*# sourceMappingURL=style-blogs.css.map */