@font-face {
    font-family: "Poppins";
    src: url('../../../../system/assets/font/poppins-regular.woff2') format('woff2'), url('../../../../system/assets/font/poppins-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url('../../../../system/assets/font/poppins-bold.woff2') format('woff2'), url('../../../../system/assets/font/poppins-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
b, strong {
    font-weight: 700;
}
/* Estilos generales */

.container-tag {
    width: 100%;
    box-sizing: border-box;
}
.title-box-tag {
    background-color: #ff6767;
    border-radius: 8px;
    padding: 12px 30px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(255, 103, 103, 0.3);
}
.h1-title-tag {
    color: white;
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.2;
    letter-spacing: -0.039em;
}
/* Responsive para pantallas más pequeñas */

@media (max-width: 768px) {
    .h1-title-tag {
        font-size: 2rem;
    }
    .title-box-tag {
        padding: 15px 20px;
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    .h1-title-tag {
        font-size: 1.5rem;
    }
    .title-box-tag {
        padding: 9px 15px;
        border-radius: 50px;
    }
}
.container-cat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
    /* Scroll-triggered animation styles */
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
/* Fade-in keyframes */

.container-cat.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Cuadro del título */

.title-box {
    background-color: #ff6767;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 5px;
    /* Scroll-triggered animation */
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}
.container-cat.visible .title-box {
    opacity: 1;
    transform: translateY(0);
}
/* Alternative with Intersection Observer (scroll-triggered) */

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Demo content for scrolling */

.animation-content {
    margin-top: 50vh;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Título */

.h1-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    letter-spacing: -0.039em;
    word-break: break-word;
    font-size: clamp(1.5rem, 6vw, 1rem);
    word-break: break-word;
    text-align: center;
    color: #fff;
}
/* Párrafo */

.text-box {
    flex: 1;
    min-width: 250px;
    /* Scroll-triggered animation */
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}
.container-cat.visible .text-box {
    opacity: 1;
    transform: translateY(0);
}
.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}
/* Responsive: Móviles */

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .title-box {
        width: 100%;
        height: auto;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-bottom: 1rem;
        transition-delay: 0.1s;
    }
    .text-box {
        transition-delay: 0.3s;
    }
    .h1-title {
        font-size: 3.5rem;
        text-align: left;
        color: #666;
    }
    .description {
        font-size: 0.95rem;
    }
}
/*Font Card*/

.container {
    margin: 0 auto;
}
.font-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(233px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.font-card {
    background: #043b62;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
/* Imagen de fondo que aparece al hover */

.font-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-image: url('https://picsum.photos/200');
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.font-card:hover::before {
    opacity: 1;
}
/* Overlay oscuro para crear contraste */

.font-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* Overlay negro más opaco para mejor contraste */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}
.font-card:hover::after {
    opacity: 1;
}
.font-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}
.card-number {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 500;
}
/* Asegurar que el número también sea blanco al hover */

.font-card:hover .card-number {
    color: rgba(255, 255, 255, 0.8);
}
.notification-dot {
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 600;
    position: relative;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}
.font-display {
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    /* Asegurar que esté por encima del overlay */
}
.font-icon {
    margin-bottom: 20px;
    text-align: center;
}
.font-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
/* Asegurar que los SVG sean blancos */

.font-icon .cls-1 {
    fill: white !important;
}
/* Asegurar que todos los paths del SVG sean blancos */

.font-icon svg path, .font-icon svg g, .font-icon svg * {
    fill: white !important;
}
.font-name {
    color: #fff !important;
    /* Forzar color blanco */
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    z-index: 3;
    /* Asegurar que esté por encima del overlay */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Sombra para mejor legibilidad */
}
/* Mantener el texto blanco al hover */

.font-card:hover .font-name {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    /* Sombra más pronunciada al hover */
}
/* Responsive */

@media (max-width: 768px) {
    .font-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        display: none;
    }
    .font-card {
        padding: 30px 25px;
    }
    .font-icon svg {
        width: 70px;
        height: 50px;
    }
}
@media (max-width: 480px) {
    .font-card {
        padding: 25px 20px;
    }
    .font-icon svg {
        width: 124px;
        /*height: 45px;*/
    }
}
/* Animación de entrada */

.font-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.font-card:nth-child(1) {
    animation-delay: 0.1s;
}
.font-card:nth-child(2) {
    animation-delay: 0.2s;
}
.font-card:nth-child(3) {
    animation-delay: 0.3s;
}
.font-card:nth-child(4) {
    animation-delay: 0.4s;
}
.font-card:nth-child(5) {
    animation-delay: 0.5s;
}
.font-card:nth-child(6) {
    animation-delay: 0.6s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Font Menu */

.font-menu-container {
    position: relative;
}
.font-menu {
    position: absolute;
    bottom: calc(100% + 20px);
    right: 10px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    /*min-width: 280px;*/
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}
.font-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.font-menu::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.menu-header {
    padding: 12px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}
.menu-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}
.menu-header p {
    font-size: 14px;
    color: #7f8c8d;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}
.menu-item:hover {
    background: #f8f9fa;
    color: #ff4757;
}
.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ff4757;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.menu-item:hover::before {
    opacity: 1;
}
.menu-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    color: #7f8c8d;
    transition: color 0.2s ease;
}
.menu-item:hover .menu-item-icon {
    color: #ff4757;
}
.menu-item-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 16px;
    color: #444;
    fill: #444;
    stroke: #444;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.menu-item-icon svg {
    width: 100%;
    height: 100%;
    color: inherit;
    fill: inherit;
    stroke: inherit;
}
.menu-item:hover .menu-item-icon {
    color: #ff4757;
    fill: #ff4757;
    stroke: #ff4757;
}
/* Menu Backdrop */

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}
/*Selectbox*/

.tags-container {
    background-color: #f3f3f3;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: #fdfeff;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
    border-radius: 8px;
    margin-bottom: 5px;
}
.tag {
    color: #4a5568;
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.tag:hover {
    color: #f62446;
    text-decoration: none !important;
    background-color: #f7fafc;
}
/* Custom Select Container */

.custom-select-container {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 10px;
}
/* Custom Select Button */

.custom-select-button {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #043b62;
    border-radius: 50px;
    background-color: #043b62;
    font-size: 16px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(4, 59, 98, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}
.custom-select-button:hover {
    background-color: #054a7a;
    border-color: #054a7a;
}
.custom-select-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 59, 98, 0.2);
}
/* Arrow Icon */

.custom-select-button::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    transition: transform 0.3s ease;
}
.custom-select-button.open::after {
    transform: translateY(-50%) rotate(180deg);
}
/* Dropdown List */

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    /* 5px separado del selectbox */
    left: 0;
    right: 0;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(4, 59, 98, 0.4);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
/* Custom Scrollbar para WebKit (Chrome, Safari, Edge) */

.custom-select-dropdown::-webkit-scrollbar {
    width: 8px;
}
.custom-select-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 8px 0;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}
.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
.custom-select-dropdown::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.7);
}
/* Para Firefox */

.custom-select-dropdown {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}
.custom-select-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Dropdown Options */

.custom-select-option {
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-select-option:last-child {
    border-bottom: none;
}
.custom-select-option:hover {
    background-color: #054a7a;
}
.custom-select-option.selected {
    background-color: #f8f8f8;
    font-weight: 600;
}
/* Responsive */

@media (max-width: 1024px) {
    .tags-container {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 768px) {
    .tags-container {
        display: none;
    }
    .custom-select-container {
        display: block;
    }
}
@media (max-width: 480px) {
    .custom-select-button {
        padding: 12px 45px 12px 18px;
        font-size: 15px;
    }
}
/* Demo styles */

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.demo-title {
    text-align: center;
    color: #2d3748;
    margin-bottom: 30px;
}
/* Overlay para cerrar dropdown */

.select-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}
.select-overlay.active {
    display: block;
}
/* Desktop Header */

.desktop-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 59px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*position: sticky;*/
    position: relative;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-header:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Logo Section */

.logo-section {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4757;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}
.logo:hover {
    transform: scale(1.05);
    color: #ff3742;
}
/* Desktop Search Section */

.desktop-search {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    position: relative;
}
.search-container {
    display: flex;
    width: 100%;
    height: 40px;
    /*border: 1px solid #ccc;*/
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.search-container:focus-within {
    /*border-color: #065fd4;*/
    /*box-shadow: 0 0 0 1px #f0f0f0;*/
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 16px;
    background-color: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}
.search-input::placeholder {
    color: #606060;
}
.search-button {
    width: 64px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    /*border-left: 1px solid #d3d3d3;*/
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.search-button:hover {
    background: #f0f0f0;
}
.search-button svg {
    width: 20px;
    height: 20px;
    color: #606060;
}
/* Desktop Right Section */

.desktop-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.icon-button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.icon-button:hover {
    background: rgba(0, 0, 0, 0.05);
}
.icon-button svg {
    width: 24px;
    height: 24px;
    color: #606060;
}
/* Mobile Header */

.mobile-header {
    display: none;
    background: #ffffff;
    /*border-bottom: 1px solid #e0e0e0;*/
    padding: 0 16px;
    height: 56px;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.mobile-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4757;
    text-decoration: none;
}
/* Bottom Navigation */

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 0 20px;
    position: relative;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}
.nav-item:active::before {
    width: 60px;
    height: 60px;
}
.nav-item svg {
    width: 24px;
    height: 24px;
    color: #606060;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.nav-item.active i {
    color: #f62446;
    transform: scale(1.1);
}
/* Search Circle Button */

.search-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f62446, #f62446);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.search-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-circle:hover::before {
    opacity: 1;
}
.search-circle:active {
    transform: scale(0.95);
}
.search-circle svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}
/* Mobile Search Bar */

.mobile-search {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    height: 80px;
    z-index: 1001;
    display: none;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-search.active {
    display: flex;
    transform: translateY(0);
}
.mobile-search-input {
    flex: 1;
    height: 48px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}
.mobile-search-input:focus {
    border-color: #ff4757;
}
.close-search {
    width: 48px;
    height: 48px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.close-search:hover {
    background: #f0f0f0;
}
.close-search svg {
    width: 24px;
    height: 24px;
    color: #606060;
}
/* Backdrop */

.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-backdrop.active {
    opacity: 1;
    visibility: visible;
}
/* Demo Content */

.demo-content {
    padding: 40px 20px;
    text-align: center;
    color: #606060;
}
.demo-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #212529;
}
.demo-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Responsive */

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 80px;
    }
}
/* Animations */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}
.nav-item:active {
    animation: bounce 0.6s ease;
}
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    }
}
.search-circle:hover {
    animation: pulse 2s infinite;
}
/*footer*/

.footer {
    padding: 60px 0 40px;
}
.footer-container {
    margin: 0 auto;
    padding: 48px 48px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.footer-logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.footer-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    max-width: 400px;
}
.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #f62446;
}
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 400px;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-logo {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .footer-description {
        margin: 0 auto 30px;
        max-width: none;
    }
    .footer-columns {
        margin: 0 auto;
    }
    .footer-column {
        margin-bottom: 0;
    }
    .footer-column h3 {
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 30px;
    }
    .footer-container {
        padding: 0 15px;
    }
    .footer-logo {
        font-size: 24px;
    }
    .footer-description {
        font-size: 14px;
    }
    .footer-columns {
        max-width: none;
    }
    .footer-column h3 {
        font-size: 15px;
    }
    .footer-links a {
        font-size: 13px;
    }
}
@media (max-width: 360px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .footer {
        display: none;
    }
    /* Asegurar que el body ocupe toda la altura */
    body {
        min-height: 100vh;
    }
    /* Si tienes un contenedor principal, que ocupe el espacio restante */
    .main-content, main {
        flex-grow: 1;
    }
}
/* Clase para ocultar el header */

.desktop-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}
/* Clase para header fixed */

.desktop-header.fixed {
    transform: translateY(0);
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
/* Navigation */

.navigation {
    background: white;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    top: 0;
    z-index: 999;
    border-radius: 8px;
    position: sticky;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 20px 0;
    display: block;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}
.nav-links li a.active, .nav-links li a:hover {
    color: #F11237;
    border-bottom-color: #F11237;
}
.download-btn {
    background: #F11237;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}
.download-btn:hover {
    background: #FF294C;
}
/* Hero Section */

.hero {
    color: #202124;
    margin: 30px;
}
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    padding-bottom: 25px;
    letter-spacing: -2px;
    color: #666;
    font-weight: 700;
    line-height: 1.2;
}
.hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    font-size: 14px;
}
/* Designed Left Box */

.designed-left {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}
.designed-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* Font Information */

.font-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}
.font-info h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.info-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info-label {
    font-weight: 700;
    color: #666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
.info-value {
    color: #333;
    font-size: 14px;
    word-break: break-word;
}
.info-value a {
    color: #F11237;
    text-decoration: none;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px;
}
.tag-font {
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #dadce0;
}
.tag-font:hover {
    background: #F11237;
    color: white;
}
.ver-mas {
    color: blue;
    cursor: pointer;
    display: inline;
    margin-left: 5px;
    color: #F11237;
}
.section-link h2 {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}
@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    .navigation {
        padding: 13px;
        margin-top: 20px;
    }
    .download-btn {
        width: 1200px;
    }
    .hero {
        text-align: center;
    }
}
