/* Variables & Reset */
:root {
    --primary-green: #0f3d2e;
    --primary-dark: #0a291f;
    --primary-light: #1c5c45;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d061;
    --text-light: #f5f5f5;
    --text-dark: #333333;
    --text-gray: #a0a0a0;
    --bg-light: #f9f9f9;
    --glass-bg: rgba(15, 61, 46, 0.85);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
buttons {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-light);
}

.mt-4 {
    margin-top: 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
    z-index: 2;
    position: relative;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-gold {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    width: 100%;
    font-weight: 700;
}

.btn-gold:hover {
    filter: brightness(1.1);
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 61, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-icon {
    color: var(--accent-gold);
}

.logo-text .highlight {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    margin-top: -80px;
    /* Offset nav */
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-bg-brazil-premium.png') no-repeat center center/cover;
    z-index: -2;
    transform: scale(1);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 61, 46, 0.5) 0%, rgba(10, 41, 31, 0.85) 100%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 10s linear infinite;
    bottom: -10px;
    /* Start below screen */
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-120vh) translateX(50px);
        /* Move up and slightly right */
        opacity: 0;
    }
}

/* Specific delays and sizes will be added via JS or specialized classes if preferred, 
   but JS generation is cleaner for random effects */

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-text-wrapper {
    max-width: 800px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    z-index: 2;
}

.hero-scroll-indicator i {
    color: var(--accent-gold);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About */
.about {
    background-color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-bg-img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover .about-bg-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 30px;
    border-radius: 20px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    font-size: 3rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(15, 61, 46, 0.1);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin-bottom: 30px;
}

.section-line.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content .section-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--accent-gold);
    background: #fcfcfc;
    font-style: italic;
    color: #555;
    position: relative;
}

.highlight-box i {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
    font-size: 2rem;
}

/* Technology */
.technology {
    background-color: var(--bg-light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-gold);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    transition: var(--transition);
}

.tech-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.tech-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.tech-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Parallax */
.parallax-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax movement */
    background-position: center;
    background-size: cover;
    z-index: -2;
    transform: translateY(0);
    /* Will be animated */
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 61, 46, 0.7);
    z-index: -1;
}

.parallax-content h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.parallax-content p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Schedule / Timeline */
.schedule {
    background: #fff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 15px;
    right: -25px;
    /* Adjust for left items */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 4px solid #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.timeline-item.right .timeline-icon {
    left: -25px;
    right: auto;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Business */
.business {
    background: var(--primary-dark);
    padding: 100px 0;
}

.business-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.business-content {
    flex: 1;
}

.business-features {
    list-style: none;
    margin-top: 30px;
}

.business-features li {
    color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.business-features i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.business-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.business-card h3 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.bank-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.bank-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Location and Countdown */
.location {
    position: relative;
    background: #fff;
    background-image: radial-gradient(var(--bg-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.location-box {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    gap: 40px;
    margin-bottom: 60px;
}

.date-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid #eee;
    padding-right: 40px;
    color: var(--primary-green);
    font-weight: 700;
}

.date-display .day {
    font-size: 3rem;
    line-height: 1;
}

.date-display .to {
    font-size: 1rem;
    color: var(--accent-gold);
}

.date-display .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.location-details {
    text-align: left;
}

.location-details i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.location-details h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.location-details p {
    color: #666;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.time-box {
    background: var(--primary-green);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(15, 61, 46, 0.3);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-logo i {
    color: var(--accent-gold);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: #aaa;
    margin-bottom: 5px;
}

.footer-info h4 {
    font-size: 1.2rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Scroll Reveal Classes */
[data-reveal] {
    opacity: 0;
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

[data-reveal="bottom"] {
    transform: translateY(50px);
}

[data-reveal="top"] {
    transform: translateY(-50px);
}

[data-reveal="left"] {
    transform: translateX(-50px);
}

[data-reveal="right"] {
    transform: translateX(50px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.9);
}

[data-reveal="fade-up"] {
    transform: translateY(30px);
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding-bottom: 50px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left {
        text-align: left;
    }

    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: 6px;
        right: auto;
    }

    .business-wrapper {
        flex-direction: column;
    }

    .location-box {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 20px;
    }

    .date-display {
        border-right: none;
        border-bottom: 2px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
        width: 100%;
    }

    .location-details {
        text-align: center;
    }

    .countdown {
        gap: 10px;
    }

    .time-box {
        width: 70px;
        height: 70px;
    }

    .time-box span {
        font-size: 1.5rem;
    }

    .time-box small {
        font-size: 0.6rem;
    }
}

/* Hero Layout & Glass Countdown */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
    /* Ensure full height usage */
}

/* Adjust text wrapper to share space */
.hero-text-wrapper {
    flex: 1;
    max-width: 650px;
}

/* Right Content Area */
.hero-right-content {
    flex: 0 0 auto;
}

/* Glass Container Style */
.glass-countdown-container {
    background: rgba(15, 61, 46, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.countdown-label {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 grid for compact look on right */
    gap: 15px;
}

.time-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.time-element small {
    margin-top: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.glass-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.glass-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.glass-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
        /* Extra spacing from nav */
    }

    .hero-text-wrapper {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right-content {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .glass-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 in a row on mobile/tablet if fits, or 2x2 */
        gap: 10px;
    }

    .glass-box {
        width: 70px;
        height: 70px;
    }

    .glass-box span {
        font-size: 1.8rem;
    }

    .glass-countdown-container {
        padding: 20px;
        width: 100%;
        max-width: 500px;
        /* Constrain width on mobile */
    }
}

@media (max-width: 576px) {
    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Back to 2x2 on very small screens */
    }
}