@charset "UTF-8";
body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(145deg, #B298DC 10%, #A3D9FF 90%);
  color: #555;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f8f8f8;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #A3D9FF, #B298DC);
  border: 2px solid #f8f8f8;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #70c4ff, #9672cf);
}

::-webkit-scrollbar-corner {
  background-color: #f8f8f8;
}

#main-content {
  background: linear-gradient(270deg, #B298DC, #A3D9FF);
  background-size: 800% 800%;
  animation: gradientShift 130s ease infinite;
  padding-top: 50px;
  padding-bottom: 80px;
  font-family: "Nunito", sans-serif;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.blog-post-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Baloo 2", sans-serif;
  color: #6c3eb6;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.blog-post-meta {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
}

.blog-hero-image {
  display: block;
  max-width: 90%;
  margin: 0 auto 30px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.blog-main-article {
  max-width: 1200px;
  background-color: #f8f8f8;
  padding: 50px 40px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border: 2px solid #cebee9;
}
.blog-main-article h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  color: #f9615e;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-main-article p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}
.blog-main-article ul {
  list-style: none;
  padding-left: 0;
}
.blog-main-article ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #333;
}
.blog-main-article ul li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  color: #5ec7f9;
}

@media (max-width: 768px) {
  .blog-main-article {
    padding: 30px 20px;
  }
  .blog-post-title {
    font-size: 2rem;
  }
  .blog-main-article h3 {
    font-size: 1.4rem;
  }
  .main-header {
    height: 65px;
    padding: 0 15px;
  }
  .main-header .site-name {
    display: none;
  }
}
.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: "Baloo 2", 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;
}
.main-footer .footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #5ec7f9;
  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;
}
.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;
}

.main-header {
  color: white;
  background-color: #f9615e;
  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: white;
}
.main-header .space {
  display: none;
}
.main-header .container {
  background-color: #f9615e;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.main-header .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: white;
  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;
  }
}

/* --- Botón de Menú (Hamburguesa) --- */
.menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1005;
  color: white;
  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;
  }
}

/* --- Navegación Principal (Enlaces) --- */
.main-nav {
  /* --- MOBILE STYLES para main-nav --- */
}
.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: white;
  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(249, 97, 94, 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;
  }
  .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 {
    color: white;
  }
  .main-nav a:hover::after {
    width: 100%;
  }
  .main-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.8em;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    width: 100%;
    position: relative;
    transition: color 0.3s ease transform 0.2s ease-out ease-in-out;
    opacity: 0;
    transform: translateX(-20px);
  }
  .main-nav a::before {
    display: none;
  }
  .main-nav a:hover {
    color: #e6e6e6;
    transform: translateY(-3px);
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    width: 0;
    height: 2px;
    background-color: #fff;
    transform: none;
    transition: width 0.3s ease-out 0.3s ease-in-out;
  }
  .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;
  }
}

/* --- Backdrop para el menú móvil (overlay oscuro detrás del menú) --- */
@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;
  }
}

/* --- Estados Activos (JavaScript añade/quita estas clases) --- */
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);
  }
}

@keyframes slideInLink {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .main-nav {
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.2s ease-out, visibility 0.2s ease-out;
  }
  body.menu-open .main-nav {
    transform: translateX(0);
  }
}
@keyframes slideOutMenu {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@media (max-width: 767px) {
  body.menu-closing .main-nav {
    animation: slideOutMenu 0.3s ease-out forwards;
  }
  body.menu-closing .menu-backdrop {
    opacity: 0;
    visibility: hidden;
  }
}
.main-header {
  color: white;
  background: linear-gradient(135deg, #B298DC, #A3D9FF);
}
.main-header .container {
  background-color: transparent;
}

@media (max-width: 767px) {
  .main-nav {
    background: linear-gradient(135deg, #B298DC, #A3D9FF);
    position: fixed;
    top: 0;
    left: -70dvw;
    width: 70dvw;
    height: 100vh;
    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;
  }
}/*# sourceMappingURL=style-pablo-.css.map */