/* Estilos generales */
body::-webkit-scrollbar { 
    display: none; 
}

body { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Estilos de Tailwind */
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

/* Resto de los estilos de Tailwind */
/* ... (aquí irían todos los estilos de Tailwind que estaban en el archivo original) ... */

/* Estilos para el menú desplegable */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para submenús */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.submenu.show {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

/* Estilos para el scroll en submenús grandes */
.scrollable-menu {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E0 #EDF2F7;
}

.scrollable-menu::-webkit-scrollbar {
    width: 6px;
}

.scrollable-menu::-webkit-scrollbar-track {
    background: #EDF2F7;
}

.scrollable-menu::-webkit-scrollbar-thumb {
    background-color: #CBD5E0;
    border-radius: 3px;
}

/* Animación para las flechas */
.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.rotate {
    transform: rotate(180deg);
}

/* Posicionamiento del menú de navegación */
nav {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    nav {
        padding: 0 2rem;
    }

    #navbar-sticky {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    #navbar-sticky ul {
        justify-content: center;
        flex: 1;
        max-width: 800px;
    }
}

/* Estilos responsivos para el menú */
@media (max-width: 768px) {
    /* Ajustes para móviles */
    nav {
        padding: 0.5rem 1rem;
        position: relative;
    }
    
    /* Logo */
    nav > a:first-child {
        order: 1;
        flex-shrink: 0;
    }
    
    /* Botón de contacto (oculto en móvil) */
    nav > div:first-of-type {
        order: 2;
        display: none !important;
    }
    
    /* Botón hamburguesa */
    nav > button.hamburger {
        order: 3;
        margin-left: auto;
        position: relative;
        z-index: 60;
    }
    
    /* Menú de navegación */
    nav > div:last-child {
        order: 4;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 50;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background-color: #f8f9fa;
        margin-top: 0.25rem;
    }

    #navbar-sticky {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #navbar-sticky ul {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #navbar-sticky ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    #navbar-sticky ul li:last-child {
        border-bottom: none;
    }

    #navbar-sticky ul li a,
    #navbar-sticky ul li button {
        width: 100%;
        text-align: left;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .dropdown-menu {
        width: auto;
        min-width: 200px;
        position: absolute;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 0.5rem;
    }

    #navbar-sticky {
        display: flex !important;
        justify-content: flex-end;
    }

    #navbar-sticky ul {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem;
    }

    #navbar-sticky ul li {
        margin: 0;
    }

    #navbar-sticky {
        min-height: 3.5rem;
    }

    #navbar-sticky ul li a,
    #navbar-sticky ul li button {
        padding: 0.35rem 0.75rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        line-height: 1.2;
    }

    #navbar-sticky ul li a:hover,
    #navbar-sticky ul li button:hover {
        color: #2563eb;
        transition: color 0.2s ease;
    }
}

/* Ajustes para pantallas grandes */
@media (min-width: 1025px) {
    .dropdown-menu {
        min-width: 220px;
    }

    #navbar-sticky ul li {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }
}

/* Transición suave para imagen de fondo */
.bg-fade-in {
  transition: opacity 0.5s ease-in-out;
}

/* Skeleton loader para tarjetas del blog */
.skeleton-card {
  height: 340px;
  border-radius: 1rem;
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s infinite linear;
  margin-bottom: 1.5rem;
}
@keyframes skeleton-loading {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* Estilos para el modal del blog */
#blog-modal {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#blog-modal-container {
  max-height: 90vh;
  overflow: hidden;
}

#blog-modal-content {
  line-height: 1.8;
}

#blog-modal-content h1,
#blog-modal-content h2,
#blog-modal-content h3,
#blog-modal-content h4,
#blog-modal-content h5,
#blog-modal-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #1f2937;
}

#blog-modal-content h1 { font-size: 1.875rem; }
#blog-modal-content h2 { font-size: 1.5rem; }
#blog-modal-content h3 { font-size: 1.25rem; }

#blog-modal-content p {
  margin-bottom: 1rem;
  color: #374151;
}

#blog-modal-content ul,
#blog-modal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

#blog-modal-content li {
  margin-bottom: 0.5rem;
  color: #374151;
}

#blog-modal-content blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6b7280;
}

#blog-modal-content code {
  background-color: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

#blog-modal-content pre {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

#blog-modal-content pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

#blog-modal-content a {
  color: #3b82f6;
  text-decoration: underline;
}

#blog-modal-content a:hover {
  color: #2563eb;
}

/* Animación de entrada para el modal */
#blog-modal:not(.hidden) #blog-modal-container {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== ESTILOS EXTRAÍDOS DEL INDEX.HTML ===== */

/* Estilos para animaciones del formulario de contacto */
.contact-section {
    transition: all 0.5s ease-in-out;
}

.contact-section.collapsing {
    transform: scale(0);
    opacity: 0;
    transform-origin: center;
}

.success-message {
    display: none;
    position: absolute;
    text-align: center;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
    animation: slideUpText 1s ease-out forwards;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.success-message.show {
    display: block;
}

.brand-message {
    display: none;
    position: absolute;
    text-align: center;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    animation: slideUpText 1s ease-out forwards;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.brand-message.show {
    display: block;
}

.checkmark {
    display: none;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: stylishFadeIn 0.8s ease-out forwards;
}

.checkmark.show {
    display: block;
}

.final-checkmark {
    display: none;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: centerFadeIn 0.8s ease-out forwards;
}

.final-checkmark.show {
    display: block;
}

@keyframes stylishFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(-30deg);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes slideUpText {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes centerFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.checkmark svg,
.final-checkmark svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.6s ease-in-out forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Estilos para el carrusel de logos */
.logos-carousel {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.logos-track {
    display: flex;
    align-items: center;
    animation: scroll-logos 20s linear infinite;
}

.logo-carousel-item {
    width: 120px;
    height: 60px;
    margin: 0 20px;
    display: inline-block;
    object-fit: contain;
    object-position: center;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pausar animación en hover */
.logos-carousel:hover .logos-track {
    animation-play-state: paused;
}

/* Responsive para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .logo-carousel-item {
        width: 150px;
        height: 75px;
        margin: 0 30px;
    }
}

/* ===== MENÚ HAMBURGUESA RESPONSIVE ===== */

/* Estilos del botón hamburguesa */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 60;
    color: #374151;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger:active {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.hamburger svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Asegurar que el botón sea visible en móviles */
@media (max-width: 1024px) {
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        order: 3;
        margin-left: auto;
        position: relative;
        z-index: 60;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.2s ease;
        color: #374151;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        /* Asegurar que el botón sea clickeable */
        pointer-events: auto;
        /* Prevenir zoom en iOS */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Mejorar el área táctil */
    .hamburger svg {
        pointer-events: none;
        width: 24px;
        height: 24px;
        color: #374151;
        /* Asegurar que el SVG no interfiera */
        touch-action: none;
    }
    
    .hamburger:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .hamburger:active {
        background-color: rgba(0, 0, 0, 0.1);
        transform: scale(0.95);
    }
    
    /* Asegurar que el botón esté siempre visible */
    .hamburger:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }
    
    /* Prevenir selección de texto */
    .hamburger * {
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        touch-action: none;
    }
    
    /* Asegurar que el botón sea responsive al toque */
    .hamburger:focus-visible {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }
    
    #navbar-sticky {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 50;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    #navbar-sticky.hidden {
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }
    
    #navbar-sticky.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #navbar-sticky:not(.hidden) {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Mostrar el menú horizontal solo en escritorio */
@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }
  
  #navbar-sticky {
    display: flex !important;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    order: 2;
  }
  
  nav > div:first-of-type {
    order: 3;
  }
}

/* Ocultar el botón de 'Contactar Expertos' en móvil y tablet */
.contactar-expertos-btn {
  display: none !important;
}
@media (min-width: 1025px) {
  .contactar-expertos-btn {
    display: inline-block !important;
  }
}

/* Mostrar el botón solo en tablet */
.tablet-contact-btn {
  display: none !important;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .tablet-contact-btn {
    display: inline-block !important;
  }
}
@media (max-width: 768px), (min-width: 1025px) {
  .tablet-contact-btn {
    display: none !important;
  }
}

/* ===== ESTILO MEJORADO DE SUBMENÚ EN MÓVIL Y TABLET ===== */
@media (max-width: 1024px) {
  /* Submenú principal */
  .dropdown-menu,
  #dropdownNavbar,
  #dropdownTechnology {
    background: linear-gradient(135deg, #f0f4ff 60%, #e0f7fa 100%);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.10);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid #e0e7ef;
    min-width: 90vw;
    left: 5vw !important;
    right: 5vw !important;
    position: absolute !important;
    z-index: 100;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
  }
  .dropdown-menu ul,
  #dropdownNavbar ul,
  #dropdownTechnology ul {
    padding: 0;
    margin: 0;
  }
  .dropdown-menu li,
  #dropdownNavbar li,
  #dropdownTechnology li {
    border-bottom: 1px solid #e3e8f0;
  }
  .dropdown-menu li:last-child,
  #dropdownNavbar li:last-child,
  #dropdownTechnology li:last-child {
    border-bottom: none;
  }
  .dropdown-menu a,
  #dropdownNavbar a,
  #dropdownTechnology a,
  .dropdown-menu button,
  #dropdownNavbar button,
  #dropdownTechnology button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #1e293b;
    background: none;
    border: none;
    text-align: left;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, padding 0.18s;
  }
  .dropdown-menu a:hover,
  #dropdownNavbar a:hover,
  #dropdownTechnology a:hover,
  .dropdown-menu button:hover,
  #dropdownNavbar button:hover,
  #dropdownTechnology button:hover {
    background: #e0f2fe;
    color: #0e7490;
    padding-left: 2rem;
  }
  /* Submenús anidados */
  .submenu {
    background: #f8fafc;
    border-left: 3px solid #38bdf8;
    margin: 0.25rem 0 0.25rem 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px 0 rgba(56,189,248,0.08);
    padding: 0.25rem 0;
    display: none;
    position: static;
  }
  .submenu.show {
    display: block;
    animation: submenuFadeIn 0.25s;
  }
  @keyframes submenuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .submenu a {
    padding-left: 2.5rem;
    font-size: 1rem;
    color: #334155;
  }
  .submenu a:hover {
    background: #bae6fd;
    color: #0369a1;
    padding-left: 3rem;
  }
  /* Indicador visual para submenús */
  .rotate-icon {
    transition: transform 0.2s;
  }
  .rotate-icon.rotate {
    transform: rotate(180deg);
  }
}

/* ===== ESTILOS PARA POST-CARDS EN PÁGINA DE CLIENTES ===== */
#contenedor-de-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

.post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.post-card-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.post-card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card-image-container img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 1.5rem;
}

.post-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-card-content .excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-content button {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.post-card-content button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive para post-cards */
@media (max-width: 768px) {
  #contenedor-de-posts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
  
  .post-card-content {
    padding: 1.25rem;
  }
  
  .post-card-content h3 {
    font-size: 1.125rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #contenedor-de-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 0;
  }
}

/* ===== MEJORAS DE ESPACIADO PARA LA PÁGINA DE CLIENTES ===== */
#blog {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  #blog {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

/* Espaciado para la sección de logos */
.carousel-container {
  margin: 3rem 0;
}

/* Espaciado para la sección de introducción */
.text-center.mb-16 {
  margin-bottom: 4rem;
}

/* Espaciado para la paginación */
.blog-pagination {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Mejoras en el espaciado general */
.max-w-screen-xl {
  max-width: 1280px;
}

/* Ajustes para el contenedor principal */
.max-w-screen-xl.mx-auto.px-6.lg\:px-8 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .max-w-screen-xl.mx-auto.px-6.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 767px) {
  #navbar-sticky.active {
    display: block !important;
  }
}
