/* ===================================
   Reset e Configurações Gerais
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Tema Xadrez */
    --primary-color: #0f2540;
    --secondary-color: #1a3a5c;
    --accent-color: #d4af37;
    --gold-light: #f4e4bc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #212529;
    --text-light: #6c757d;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0f2540 0%, #1a3a5c 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 48px;
}

section {
    padding: 60px 0;
}

@media (min-width: 769px) {
    section {
        padding: 80px 0;
    }
}

/* ===================================
   Header e Navegação
   =================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 100px);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: var(--shadow-lg);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contador Regressivo */
.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 120px;
    transition: var(--transition);
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-scroll a:hover {
    opacity: 1;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Sobre Section
   =================================== */
.sobre {
    background: var(--light-gray);
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.sobre-text strong {
    color: var(--primary-color);
}

.sobre-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}



.dia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.dia-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.dia-header {
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.dia-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.dia-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 0;
}

.dia-data {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 4px;
}

.dia-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.periodo {
    background: #f8fbff;
    padding: 18px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

.periodo-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.atividade {
    display: flex;
    gap: 15px;
    position: relative;
}

.atividade-hora {
    font-weight: 800;
    color: var(--accent-color);
    font-size: 0.95rem;
    min-width: 95px;
    padding-top: 4px;
    flex-shrink: 0;
}

.atividade-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.atividade-info p {
    margin: 6px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.atividade-local {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.oficinas-list {
    margin: 12px 0 0 0;
    padding-left: 5px;
    list-style: none;
}

.oficinas-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.oficinas-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

/* Tags de atividade */
.atividade-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo perfeito */
@media (max-width: 767px) {
    .dia-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .dia-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    .dia-header h3 {
        font-size: 1.6rem;
    }
    .dia-body {
        padding: 25px 20px;
    }
    .atividade {
        flex-direction: column;
        gap: 10px;
    }
    .atividade-hora {
        min-width: auto;
        font-size: 1.1rem;
        font-weight: 700;
    }
    .periodo {
        padding: 16px;
    }
}

/* ===================================
   Local Section
   =================================== */
.local {
    background: var(--light-gray);
}

.local-content {
    max-width: 800px;
    margin: 0 auto;
}

.local-info {
    display: grid;
    gap: 30px;
}

.local-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.local-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.local-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.local-card p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.local-destaque {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
}

.local-destaque h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.local-destaque ul {
    list-style: none;
}

.local-destaque li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.local-destaque li i {
    color: var(--accent-color);
}

/* ===================================
   Inscrição Section
   =================================== */
.inscricao {
    background: var(--white);
}

.inscricao-content {
    max-width: 800px;
    margin: 0 auto;
}

.inscricao-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.inscricao-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--primary-color);
}

.inscricao-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inscricao-card > p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.inscricao-beneficios {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.inscricao-beneficios h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.inscricao-beneficios ul {
    list-style: none;
}

.inscricao-beneficios li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.inscricao-beneficios li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ===================================
   Contato Section
   =================================== */
.contato {
    background: var(--gradient-primary);
    color: var(--white);
}

.contato .section-title {
    color: var(--white);
}

.contato .section-subtitle {
    color: var(--gold-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contato-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contato-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.contato-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.contato-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contato-card p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.contato-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contato-card a:hover {
    color: var(--gold-light);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 10px;
    font-weight: 600;
}

.whatsapp-link:hover {
    background: #1fb855;
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #0a1a2e;
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-info p {
    margin-bottom: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* ===================================
   Animações
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Responsividade
   =================================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 37, 64, 0.98);
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-date {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .programacao-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .atividade {
        flex-direction: column;
        gap: 10px;
    }
    
    .atividade-hora {
        min-width: auto;
    }
    
    .dia-header {
        padding: 20px;
    }
    
    .dia-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .dia-header h3 {
        font-size: 1.5rem;
    }
    
    .inscricao-card {
        padding: 30px 20px;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
        padding-top: 35px;
    }
    
    .hero-logo {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .nav-logo img {
        height: 80px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .dia-content {
        padding: 20px;
    }
    
    .periodo {
        margin-bottom: 20px;
    }
    
    .atividade {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .atividade-info h4 {
        font-size: 1rem;
    }
    
    .atividade-info p {
        font-size: 0.9rem;
    }
}

/* Animações ao scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Link ativo no menu */
.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Header scrolled (já tinha, mas reforçando) */
#header.scrolled {
    background: rgba(15, 37, 64, 0.98);
    padding: 8px 0 !important;
    backdrop-filter: blur(15px);
}

#header.scrolled .nav-logo img {
    height: 50px;
}

/* ===================================
   Galeria Section
   =================================== */
.galeria {
    background: var(--light-gray);
}

.galeria-dias {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dia-galeria {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.dia-galeria h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.foto-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
}

.foto-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.foto-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .fotos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .fotos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .dia-galeria h3 {
        font-size: 1.5rem;
    }
}