/**
 * ==========================================
 * ACICONDF - Estilos Customizados
 * ==========================================
 * CSS personalizado para o site público
 * Autor: Eliel Cruz
 * Data: Dezembro 2025
 */

/* ==========================================
   VARIÁVEIS CSS
   ========================================== */
:root {
    --primary-color: #28a745;
    --primary-dark: #218838;
    --primary-light: #d4edda;
    --secondary-color: #007bff;
    --secondary-dark: #0056b3;
    --secondary-light: #cce5ff;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --transition: all 0.3s ease;
}

/* ==========================================
   RESET E GLOBAL
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* ==========================================
   TIPOGRAFIA
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

/* ==========================================
   UTILITÁRIOS
   ========================================== */
.menu-size{
    font-size: 15px !important;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.shadow-custom {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   BOTÕES CUSTOMIZADOS
   ========================================== */
.btn-custom {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ==========================================
   CARDS
   ========================================== */
.card-custom {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.card-custom:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-header-custom {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-body-custom {
    padding: 1.5rem 0;
}

/* ==========================================
   BADGES
   ========================================== */
.badge-custom {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-transform: uppercase;
}

.badge-success {
    background-color: var(--primary-color);
    color: white;
}

.badge-info {
    background-color: var(--secondary-color);
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: var(--dark-color);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb-custom {
    background-color: var(--light-color);
    padding: 1rem 0;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.breadcrumb-custom a {
    color: var(--gray-color);
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

/* ==========================================
   LOADER
   ========================================== */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--light-color);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   PARALLAX
   ========================================== */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* ==========================================
   ANIMAÇÕES PERSONALIZADAS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ==========================================
   FORMULÁRIOS
   ========================================== */
.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-input-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-input-custom.error {
    border-color: #dc3545;
}

.form-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ==========================================
   MODAL PERSONALIZADO
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 768px) {
    .container-custom {
        padding: 0 1rem;
    }
    
    .btn-custom {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .card-custom {
        padding: 1rem;
    }
}

/* ==========================================
   IMPRESSÃO
   ========================================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ==========================================
   HERO CAROUSEL - VERSÃO CORRIGIDA
   ========================================== */

/* Container principal */
.hero-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Carrossel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 500px;
    }
}

/* Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Background da imagem */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay gradiente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.85) 0%,
        rgba(33, 136, 56, 0.75) 50%,
        rgba(0, 123, 255, 0.65) 100%
    );
    z-index: 1;
}

/* Overlay para o segundo slide - Escuro elegante */
.hero-overlay-2 {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(33, 136, 56, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 100%
    ) !important;
}

/* Overlay para o terceiro slide - Azul/Verde */
.hero-overlay-3 {
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.85) 0%,
        rgba(40, 167, 69, 0.75) 100%
    ) !important;
}

/* Overlay para o quarto slide - Roxo/Azul elegante */
.hero-overlay-4 {
    background: linear-gradient(
        135deg,
        rgba(108, 92, 231, 0.85) 0%,
        rgba(0, 123, 255, 0.75) 50%,
        rgba(40, 167, 69, 0.65) 100%
    ) !important;
}

/* Conteúdo do slide */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Título */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Botões do hero */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background-color: white;
    color: #28a745;
    border-color: white;
}

.btn-hero-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-hero-outline:hover {
    background-color: white;
    color: #28a745;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* Controles do carrossel */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #28a745;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.carousel-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.indicator:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 30px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 28px;
    }
}

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 20;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

@media (max-width: 768px) {
    .hero-wave svg {
        height: 80px;
    }
}

/* Animações de entrada */
.hero-slide.active .hero-title {
    animation: slideUp 0.8s ease-out forwards;
}

.hero-slide.active .hero-subtitle {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-slide.active .hero-buttons {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* Efeito de zoom suave (Ken Burns) */
.hero-slide.active .hero-slide-bg {
    animation: kenBurns 20s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Desabilitar animações para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide-bg,
    .carousel-btn,
    .indicator,
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
}

/* Melhorias de performance */
.hero-slide,
.hero-slide-bg {
    will-change: opacity;
}

.carousel-btn {
    will-change: transform;
}

/* Ajuste para garantir que não haja espaço em branco */
.hero-carousel-section {
    margin-bottom: -1px;
}



/**
 * ==========================================
 * ACICONDF - Estilos da Galeria
 * ==========================================
 * Estilos específicos para a página de galeria
 * Autor: Eliel Cruz
 * Data: Janeiro 2026
 */

/* Container da Galeria */
.gallery-card {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Imagem da Galeria */
.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.08);
}

/* Overlay com Gradiente */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.7) 75%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* Conteúdo sobre a imagem */
.gallery-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 10;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-card-content {
    padding-bottom: 36px;
}

/* Título da Galeria */
.gallery-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-title {
    transform: translateY(-4px);
}

/* Descrição da Galeria */
.gallery-card-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery-card:hover .gallery-card-description {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 20px;
}

/* Meta informações (data e fotos) */
.gallery-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-meta-item {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.gallery-meta-item i {
    font-size: 1rem;
    opacity: 0.9;
}

/* Botão Ver Galeria */
.gallery-card-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.gallery-card:hover .gallery-card-button {
    opacity: 1;
    transform: translateY(0);
    background: rgba(40, 167, 69, 0.9);
    border-color: rgba(40, 167, 69, 1);
}

.gallery-card-button:hover {
    background: rgba(33, 136, 56, 1);
    transform: translateY(-2px) scale(1.05);
}

/* Ícone de câmera flutuante */
.gallery-card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.gallery-card:hover .gallery-card-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Animação de pulse para o ícone */
@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.gallery-card:hover .gallery-card-icon {
    animation: pulse-icon 2s ease-in-out infinite;
}

/* Badge de categoria (opcional) */
.gallery-card-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.gallery-card:hover .gallery-card-badge {
    opacity: 1;
    transform: translateX(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery-card {
        height: 380px;
    }
    
    .gallery-card-title {
        font-size: 1.5rem;
    }
    
    .gallery-card-content {
        padding: 24px;
    }
    
    .gallery-card-description {
        font-size: 0.875rem;
    }
    
    /* Mostrar descrição sempre no mobile */
    .gallery-card-description {
        max-height: 80px;
        opacity: 1;
        margin-bottom: 16px;
    }
    
    .gallery-card-button {
        opacity: 1;
        transform: translateY(0);
        top: 16px;
        right: 16px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .gallery-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        top: 16px;
        left: 16px;
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Efeito de brilho ao passar o mouse */
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 15;
}

.gallery-card:hover::before {
    left: 100%;
}

/* Loading skeleton (opcional para uso futuro) */
.gallery-card-skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}