/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Contenedor principal */
.menu-container {
    background: #f8f9fa;
    width: 100%;
}

/* Header del menú - Blanco - 100% de ancho */
.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #f8f9fa;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Alineado a la izquierda */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover,
.logo-link:focus {
    opacity: 0.8;
}

/* Quitar borde y transición en desktop */
@media (min-width: 768px) {
    .logo-link {
        transition: none;
    }
    
    .logo-link:hover,
    .logo-link:focus {
        outline: none;
        opacity: 1;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    max-width: 200px;
}

/* Icono de búsqueda Desktop */
.search-toggle-desktop {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.search-toggle-desktop:hover,
.search-toggle-desktop:focus {
    background: #f3f4f6;
    color: #ea580c;
    outline: none;
}

.search-icon {
    width: 20px;
    height: 20px;
}

/* Overlay de búsqueda desktop */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #f97316, #ea580c); /* mismo estilo que menú móvil */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    z-index: 1000;
    padding-top: 100px;
}

.search-overlay[aria-hidden="false"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.search-overlay-header {
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-overlay-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.search-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Asegurar que el icono de cierre tenga el mismo estilo que el menú móvil */
.search-close .close-icon {
    width: 24px;
    height: 24px;
}

.search-close:hover,
.search-close:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.search-overlay-form {
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
}

.search-overlay-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.search-overlay-input-wrapper:focus-within {
    border: 2px solid transparent;
    outline: none;
}

.search-overlay-input-wrapper:hover {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.search-overlay-input-wrapper:focus-within:hover {
    border: 2px solid transparent;
}

.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    padding: 0.75rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.search-overlay-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-overlay-submit {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.search-overlay-submit:hover,
.search-overlay-submit:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
}

.search-overlay-submit .search-icon {
    width: 24px;
    height: 24px;
}

/* Botón hamburguesa - Alineado a la derecha */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: #f3f4f6;
    outline: none;
}

.menu-toggle:active {
    transform: scale(0.95);
}

.hamburger {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px; /* h-0.5 equivalente */
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animación del botón hamburguesa cuando está abierto */
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px); /* translate-y-2 */
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px); /* -translate-y-2 */
}

/* Contenedor del contenido */
.content-wrapper {
    position: relative;
    min-height: auto;
    background: #f8f9fa;
    overflow: hidden;
    padding-top: 0; /* El slider ya compensa la altura del header */
}

/* Contenedor de bloques de estrellas */
.menu-container .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Responsive breakpoints para el contenedor en menu-container */
@media (min-width: 576px) {
    .menu-container .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .menu-container .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .menu-container .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .menu-container .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .menu-container .container {
        max-width: 1320px;
    }
}

/* Menú overlay con animación */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #f97316, #ea580c); /* from-orange-500 to-orange-700 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    z-index: 100;
    overflow-y: auto;
}

.menu-overlay[aria-hidden="false"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* Header del menú overlay con logo y botón cerrar */
.menu-overlay-header {
    width: 100%;
    max-width: 1200px;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-overlay-logo {
    display: flex;
    align-items: center;
}

.menu-overlay-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover,
.menu-close:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.close-icon {
    width: 24px;
    height: 24px;
}

/* Campo de búsqueda móvil */
.search-mobile-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin-top: 50px;
    margin-bottom: 2rem;
}

.search-form-mobile {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1rem;
    padding: 0.5rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.search-submit-btn:hover,
.search-submit-btn:focus {
    opacity: 0.8;
    outline: none;
}

/* Navegación del menú */
.menu-nav {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.menu-link {
    display: block;
    font-family: 'Merriweather', Georgia, serif;
    color: white;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 300; /* font-light */
    padding: 0.75rem 0; /* py-3 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover,
.menu-link:focus {
    color: #fed7aa; /* orange-200 */
    outline: none;
}

/* Submenú móvil */
.mobile-submenu-container {
    width: 100%;
}

.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
}

.submenu-arrow {
    transition: transform 0.3s ease;
}

.submenu-toggle.active .submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu a {
    color: white;
    text-decoration: none;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.mobile-submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fed7aa;
}

/* Grupos en submenú móvil */
.mobile-submenu-group {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu-group:last-child {
    border-bottom: none;
}

.mobile-submenu-title {
    color: #fed7aa;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    margin: 0;
}

.mobile-submenu-group a {
    padding-left: 2rem;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Contenido de la página */
.page-content {
    padding: 1.5rem;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
}

.content-text {
    color: #4b5563; /* gray-600 */
    margin-bottom: 2rem;
    font-size: 1rem;
}

.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section h1,
.section h2 {
    color: #ea580c;
    margin-bottom: 1rem;
}

.section h1 {
    font-size: 2.5rem;
}

.section h2 {
    font-size: 2rem;
}

.section p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Menú Desktop */
.nav-desktop {
    display: none;
}

.nav-desktop-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-desktop-link {
    font-family: 'Merriweather', Georgia, serif;
    color: #343333;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-desktop-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #343333;
    transition: width 0.3s ease;
}

.nav-desktop-link:hover,
.nav-desktop-link:focus {
    color: #008888;
    outline: none;
}

.nav-desktop-link:hover::after,
.nav-desktop-link:focus::after {
    width: 100%;
    background: #008888;
}

/* Quitar línea en enlaces con submenú */
.has-dropdown .nav-desktop-link::after,
.has-megamenu .nav-desktop-link::after {
    display: none;
}

/* Dropdown Arrow */
.dropdown-arrow {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.has-dropdown:hover .dropdown-arrow,
.has-megamenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Menú Desplegable Sencillo */
.has-dropdown {
    position: static;
}

.dropdown-menu {
    position: fixed;
    top: 90px; /* Altura del header */
    left: auto;
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #343333;
    text-decoration: none;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #008888;
    padding-left: 1.5rem;
}

/* Mega Menú */
.has-megamenu {
    position: static;
}

.mega-menu {
    position: fixed;
    top: 90px; /* Altura del header */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 700px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Ajuste responsive para menús desplegables */
@media (min-width: 768px) {
    .dropdown-menu,
    .mega-menu {
        top: 90px; /* Altura del header en desktop */
    }
}

.mega-column h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e7520f;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e7520f;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: #343333;
    text-decoration: none;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mega-column li a svg {
    width: 18px;
    height: 18px;
    stroke: #c4c4c4;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.mega-column li a:hover {
    color: #008888;
    padding-left: 0.5rem;
}

.mega-column li a:hover svg {
    stroke: #008888;
}

/* Versión Tablet - Mantener menú hamburguesa */
@media (min-width: 768px) and (max-width: 1023px) {
    .menu-header {
        padding: 1.25rem 0;
    }

    .header-inner {
        padding: 0 2rem;
    }

    .logo-img {
        height: 60px;
    }

    /* Mantener menú hamburguesa en tabletas */
    .menu-toggle {
        display: flex;
    }

    /* Ocultar menú desktop en tabletas */
    .nav-desktop {
        display: none;
    }

    /* Ocultar icono de búsqueda desktop en tabletas */
    .search-toggle-desktop {
        display: none;
    }

    .content-wrapper {
        min-height: auto;
        padding-top: 0; /* El slider ya compensa la altura del header */
    }

    .page-content {
        padding: 2rem 2rem;
    }

    .content-section {
        max-width: 1200px;
        margin: 0 auto;
    }

    .content-section h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 2rem;
    }
}

/* Versión Desktop */
@media (min-width: 1024px) {
    .menu-header {
        padding: 1.25rem 0;
    }

    .header-inner {
        padding: 0 2rem;
    }

    .logo-img {
        height: 60px;
    }

    /* Mostrar menú desktop - alineado a la derecha */
    .nav-desktop {
        display: block;
        margin-left: auto;
    }

    .nav-desktop-list {
        justify-content: flex-end;
    }

    /* Ocultar botón hamburguesa en desktop */
    .menu-toggle {
        display: none;
    }

    /* Mostrar icono de búsqueda desktop */
    .search-toggle-desktop {
        display: flex;
    }

    /* Ocultar campo de búsqueda móvil en desktop */
    .search-mobile-container {
        display: none;
    }

    /* Ocultar menú overlay en desktop */
    .menu-overlay {
        display: none;
    }

    .content-wrapper {
        min-height: auto;
        padding-top: 0; /* El slider ya compensa la altura del header */
    }

    .page-content {
        padding: 2rem 3rem;
    }

    .content-section {
        max-width: 1200px;
        margin: 0 auto;
    }

    .content-section h1 {
        font-size: 3rem;
    }

    .section {
        padding: 2.5rem;
    }
}

/* Animaciones suaves */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Prevenir scroll cuando el menú está abierto */
body.menu-open {
    overflow: hidden;
}

/* Accesibilidad - Focus visible */
*:focus-visible {
    outline: 2px solid #ea580c;
    outline-offset: 2px;
}

/* Mejoras de accesibilidad para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 2rem 1rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-logo {
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.footer-text a {
    color: #ea580c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover,
.footer-text a:focus {
    color: #c2410c;
    text-decoration: underline;
    outline: none;
}

/* Footer responsive - Móvil */
@media (max-width: 767px) {
    .footer-logo {
        max-width: 80%;
        height: auto;
    }
}

/* Footer responsive - Desktop */
@media (min-width: 768px) {
    .footer {
        padding: 3rem 2rem;
    }

    .footer-logo {
        width: auto;
        max-width: none;
        margin-bottom: 2rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

/* Estilos para footerHeader - Asegurar que se apliquen los estilos de 85Aniversario */
.footerHeader {
    background-color: #000 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footerHeader .padding-50px-bottom {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footerHeader .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Botón "Ir hacia arriba" */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background: #c2410c;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    outline: none;
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Prevenir scroll cuando el overlay de búsqueda está abierto */
body.search-open {
    overflow: hidden;
}

/* Sección de Introducción */
.intro-section {
    background: #f8f9fa;
    padding: 4rem 2rem 3rem 2rem;
    margin: 0;
    margin-top: 3rem;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000;
    margin: 0 0 1.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text .highlight-stars {
    color: #e7520f;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(231, 82, 15, 0.1) 0%, rgba(231, 82, 15, 0.05) 100%);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #e7520f;
}

/* Responsive para la sección de introducción */
@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 1.5rem 2rem 1.5rem;
        margin-top: 3rem;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .intro-text .highlight-stars {
        font-size: 1.125rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (min-width: 1024px) {
    .intro-section {
        padding: 5rem 2rem 3.5rem 2rem;
        margin-top: 3rem;
    }

    .intro-text {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .intro-text .highlight-stars {
        font-size: 1.375rem;
    }
}

