.btn-whatsapp-mobile {
    display: none;
    padding: 0.5rem 0.7rem;
    font-size: 0.95rem;
    min-width: 0;
    min-height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37,211,102,0.18);
    justify-content: center;
    align-items: center;
    gap: 0;
}

@media (max-width: 767px) {
    .btn-whatsapp-mobile {
        display: inline-flex !important;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .nav-whatsapp-desktop {
        display: none !important;
    }
}
/* Muro Alto Paradise - Optimized Styles */
/* Non-critical CSS loaded with defer */

/* ============================================
   UTILITIES & LAYOUT
   ============================================ */



.logo .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

.logo h1 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo .material-symbols-outlined {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .logo .material-symbols-outlined {
        font-size: 1.75rem;
    }
    
    .logo h1 {
        font-size: 1.125rem;
    }
}

.nav-desktop {
    display: none;
    gap: 1rem;
    align-items: center;
    list-style: none;
}

.nav-desktop a {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

@media (hover: hover) {
    .nav-desktop a:hover, .nav-desktop a:focus {
        background: #e0f2fe;
        color: #0284c7;
        box-shadow: 0 2px 8px rgba(2,132,199,0.08);
        outline: none;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        gap: 2rem;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(15,23,42,0.04);
    padding: 0.25rem 0.5rem;
    min-height: 44px;
}

/* Header WhatsApp button - hide on mobile */
nav .btn-whatsapp {
    display: none;
}

@media (min-width: 768px) {
    nav .btn-whatsapp.nav-whatsapp-desktop {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.5rem 1.2rem;
        border-radius: 0.5rem;
        background: var(--whatsapp);
        color: #fff;
        box-shadow: 0 2px 8px rgba(37,211,102,0.08);
        border: none;
        cursor: pointer;
        transition: background 0.2s, box-shadow 0.2s;
        margin-left: 1.25rem;
    }
    nav .btn-whatsapp.nav-whatsapp-desktop:hover, nav .btn-whatsapp.nav-whatsapp-desktop:focus {
        background: #1ebe5d;
        box-shadow: 0 4px 16px rgba(37,211,102,0.16);
        outline: none;
    }
}

@media (max-width: 767px) {
    nav .btn-whatsapp.nav-whatsapp-desktop {
        display: none !important;
    }
    .btn-whatsapp {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    background: none;
    border: none;
    color: #475569;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    border-radius: 50%;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #f1f5f9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    outline: none;
}

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 2.2rem;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), color 0.2s;
}

.mobile-menu-toggle[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(90deg) scale(1.15);
    color: #0ea5e9;
}

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-mobile-menu {
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1.25rem;
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 2rem;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        gap: 1.5rem;
    }
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }
}

.hero-content h2 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1rem;
    color: #e2e8f0;
    max-width: 36rem;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-content p {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.25rem;
    }
}

.btn-hero {
    margin-top: 0.5rem;
    font-size: 1rem;
    height: 3rem;
    padding: 0 1.5rem;
    box-shadow: 0 20px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.2s;
    min-height: 44px;
}

@media (min-width: 640px) {
    .btn-hero {
        margin-top: 0.75rem;
        font-size: 1.125rem;
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .btn-hero {
        margin-top: 1rem;
    }
}

.btn-hero:hover {
    transform: translateY(-4px);
}

.btn-hero:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.btn-large .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

@media (min-width: 640px) {
    .features {
        padding: 4.5rem 0;
    }
}

@media (min-width: 1024px) {
    .features {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4.5rem;
    }
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .features-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 1.75rem;
    }
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.feature-card:hover .feature-icon {
    background-color: rgba(6, 182, 212, 0.2);
}

.feature-icon .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .feature-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
}

@media (min-width: 1024px) {
    .feature-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.feature-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.9375rem;
}

@media (min-width: 1024px) {
    .feature-card p {
        font-size: 1rem;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 3.5rem 0;
    background: white;
}

@media (min-width: 640px) {
    .gallery {
        padding: 4.5rem 0;
    }
}

@media (min-width: 1024px) {
    .gallery {
        padding: 6rem 0;
    }
}

.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.5rem;
    }
}

.gallery-header p {
    color: #64748b;
    max-width: 36rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: auto;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        min-height: 500px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    height: 14rem;
}

@media (min-width: 640px) {
    .gallery-item {
        height: 16rem;
    }
}

@media (min-width: 768px) {
    .gallery-item {
        height: auto;
    }
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.gallery-item:hover::after,
.gallery-item:focus::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.gallery-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location {
    padding: 3.5rem 0;
    background-color: #f0f9ff;
}

@media (min-width: 640px) {
    .location {
        padding: 4.5rem 0;
    }
}

@media (min-width: 1024px) {
    .location {
        padding: 6rem 0;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .location-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

.location-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-list .material-symbols-outlined {
    color: var(--primary);
}

.location-list span:last-child {
    color: #1e293b;
}

.location-map {
    height: 25rem;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 3.5rem 0;
    background-color: rgba(6, 182, 212, 0.1);
}

@media (min-width: 640px) {
    .cta-section {
        padding: 4.5rem 0;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 6rem 0;
    }
}

.cta-content {
    max-width: 56rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}

.cta-content p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.btn-large {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
}

@media (min-width: 640px) {
    .btn-large {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
        gap: 0.75rem;
    }
}

.btn-large:hover {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 2.5rem 0;
    border-top: 1px solid #1e293b;
}

@media (min-width: 640px) {
    footer {
        padding: 3rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.875rem;
}

.footer-logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 0.875rem;
    color: #94a3b8;
    max-width: 28rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cbd5e1;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-contact h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-contact .material-symbols-outlined {
    color: var(--primary);
    font-size: 1rem;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom strong {
    color: white;
}

/* ============================================
   COOKIE CONSENT (LGPD)
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-content h3 {
    font-size: 1.125rem;
    margin: 0;
}

.cookie-content p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
    white-space: nowrap;
}

.btn-accept {
    background: var(--primary);
    color: white;
}

.btn-accept:hover {
    background: #0891b2;
}

.btn-reject {
    background: #e2e8f0;
    color: #475569;
}

.btn-reject:hover {
    background: #cbd5e1;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
}

@media (max-width: 767px) {
    nav .btn-whatsapp {
        display: none !important;
    }
}

.modal.show {
    display: block;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show .modal-backdrop {
    opacity: 1;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
    max-width: 32rem;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.modal.show .modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
}

.modal-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon .material-symbols-outlined {
    color: #d97706;
}

.modal-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.modal-header p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.modal-footer {
    background-color: #f8fafc;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.btn-close-modal {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    min-height: 44px;
}

.btn-close-modal:hover {
    background: #0891b2;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll reveal animations - applied via Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible for better keyboard navigation */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
