@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/InterDisplay-Bold.woff2') format('woff2');
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  overflow-x: hidden;
}


.nav-active {
  color: #ea580c; /* Tailwind's orange-600 */
  font-weight: 600;
  border-bottom: 2px solid #f97316; /* Tailwind's orange-500 */
}

.swiper-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Evita cualquier desbordamiento horizontal */
}

.swiper-slide {
    width: 100% !important;
    max-width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.max-w-7xl {
    @media (max-width: 640px) {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


/* Blockquote Styling */
.prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #f9fafb; /* Light gray background, matches bg-gray-50 */
    border-left: 4px solid #f97316; /* Orange accent, matches text-orange-600 */
    border-radius: 0.375rem; /* Rounded corners, matches button styles */
    color: #374151; /* Dark gray text, matches text-gray-700 */
    font-family: 'Inter', sans-serif; /* Matches site typography */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow, matches header/footer */
}

.prose blockquote p {
    margin: 0; /* Remove default margin for cleaner look */
    line-height: 1.6; /* Matches prose line height */
}

.prose blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem; /* Smaller font for citation, matches text-sm */
    color: #6b7280; /* Matches text-gray-500 */
    font-style: normal;
    font-weight: 500;
}

.lg\:prose-xl blockquote {
    padding: 1.25rem 2rem; /* Slightly larger padding for larger screens */
    font-size: 1.125rem; /* Matches prose-xl font size */
}

.lg\:prose-xl blockquote cite {
    font-size: 1rem; /* Slightly larger citation font for prose-xl */
}


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    height: 50vh; /* Altura para móviles */
}

@media (min-width: 768px) {
    .swiper-slide {
        height: 80vh; /* Altura para tablets y desktop */
    }
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #f97316; /* orange-500 */
    opacity: 1;
}

body {
    transform-style: preserve-3d;
      overflow-x: hidden;
  overflow-y: scroll;
}