/* public/css/convite.css */

/* ============================================
   CONVITE PÚBLICO - ESTILOS GERAIS
   ============================================ */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    background: #f4f1ea;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============================================
   HERO - TELA CHEIA
   ============================================ */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-overlay.with-image {
    background: rgba(0, 0, 0, 0.45);
}

.hero .hero-overlay:not(.with-image) {
    background: linear-gradient(135deg, #f4f1ea 0%, #e8e0d5 100%);
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.hero .hero-content .couple-names {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1.2s ease;
}

.hero .hero-content .couple-names .ampersand {
    color: #c9a96e;
    margin: 0 20px;
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero .hero-content .date {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease;
}

.hero .hero-content .date i {
    color: #c9a96e;
    margin: 0 10px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    animation: bounce 2s infinite;
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounceArrow 2s infinite;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    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);
    }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   CONTADOR REGRESSIVO
   ============================================ */
.contador {
    background: linear-gradient(135deg, #f4f1ea 0%, #e8e0d5 100%);
    padding: 60px 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.contador h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contador .contador-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.contador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contador-item {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contador-item .numero {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    line-height: 1.2;
}

.contador-item .label {
    display: block;
    font-size: 0.85rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.contador-info {
    margin-top: 20px;
    color: #718096;
    font-size: 1rem;
}

.contador-info i {
    color: #c9a96e;
}

.contador-evento-passou {
    padding: 30px 20px;
}

.contador-evento-passou .icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.contador-evento-passou h3 {
    font-size: 1.8rem;
    color: #c9a96e;
    margin-bottom: 10px;
}

.contador-evento-passou p {
    color: #718096;
    font-size: 1.1rem;
}

/* ============================================
   VERSÍCULO
   ============================================ */
.versiculo {
    text-align: center;
    padding: 40px 30px;
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #c9a96e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.versiculo p {
    font-size: 1.3rem;
    font-style: italic;
    color: #4a4a4a;
}

.versiculo cite {
    display: block;
    margin-top: 10px;
    color: #c9a96e;
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   DETALHES DOS EVENTOS
   ============================================ */
.detalhes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.detalhe-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.detalhe-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.detalhe-item i {
    color: #c9a96e;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.detalhe-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.detalhe-item .horario {
    font-weight: 700;
    color: #c9a96e;
    font-size: 1.1rem;
}

.detalhe-item .local {
    color: #4a5568;
    margin-top: 5px;
    font-weight: 500;
}

.detalhe-item .endereco {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-top: 5px;
}

.detalhe-item .btn-mapa {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: #c9a96e;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.detalhe-item .btn-mapa:hover {
    background: #b8975a;
}

/* ============================================
   NOIVOS
   ============================================ */
.noivos {
    text-align: center;
    padding: 40px 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.noivos h2 {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 5px;
}

.noivos .noivos-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.noivos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.noivo-item {
    text-align: center;
}

.noivo-foto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #c9a96e;
}

.noivo-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noivo-foto.no-foto {
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px dashed #e2e8f0;
}

.noivo-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.noivo-info p {
    color: #718096;
    font-size: 0.9rem;
}

.noivo-info .pais {
    color: #c9a96e;
    font-weight: 600;
}

/* ============================================
   ESTATÍSTICAS
   ============================================ */
.estatisticas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.estatistica-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.estatistica-item .numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
}

.estatistica-item .label {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ============================================
   CONFIRMAÇÃO
   ============================================ */
.form-confirmacao {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-confirmacao h2 {
    text-align: center;
    color: #c9a96e;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-confirmacao .subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.form-group label .required {
    color: #e53e3e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.btn-confirmar {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: #c9a96e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-confirmar:hover {
    background: #b8975a;
}

.btn-confirmar i {
    margin-right: 8px;
}

/* ============================================
   HISTÓRIA DO CASAL
   ============================================ */
.historia-casal {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f4f1ea 0%, #e8e0d5 100%);
    border-radius: 12px;
}

.historia-casal h2 {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 15px;
}

.historia-casal .historia-texto {
    max-width: 700px;
    margin: 0 auto;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.historia-casal .historia-texto::before {
    content: '"';
    font-size: 2rem;
    color: #c9a96e;
    font-style: normal;
}

.historia-casal .historia-texto::after {
    content: '"';
    font-size: 2rem;
    color: #c9a96e;
    font-style: normal;
}

/* ============================================
   GALERIA PÚBLICA
   ============================================ */
.galeria-publica {
    padding: 40px 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.galeria-publica .galeria-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 5px;
}

.galeria-publica .galeria-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 30px;
}

.galeria-publica-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.galeria-publica-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f7fafc;
}

.galeria-publica-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeria-publica-item:hover img {
    transform: scale(1.05);
}

.galeria-publica-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeria-publica-item:hover .galeria-publica-info {
    opacity: 1;
}

.galeria-publica-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.galeria-publica-info p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-info {
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.lightbox-info h3 {
    font-size: 1.2rem;
}

.lightbox-info p {
    color: #a0aec0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 30px 0;
    color: #a0aec0;
    font-size: 0.85rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

.footer .heart {
    color: #e53e3e;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .hero .hero-content .couple-names {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .hero .hero-content .couple-names .ampersand {
        font-size: 2.2rem;
        margin: 0 10px;
    }
    
    .hero .hero-content .date {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero .hero-content .date i {
        margin: 0 5px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .contador-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contador-item .numero {
        font-size: 2rem;
    }

    .detalhes {
        grid-template-columns: 1fr;
    }

    .estatisticas {
        grid-template-columns: 1fr;
    }

    .noivos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-confirmacao {
        padding: 25px 20px;
    }

    .galeria-publica-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .historia-casal .historia-texto {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero .hero-content .couple-names {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero .hero-content .couple-names .ampersand {
        font-size: 1.8rem;
        margin: 0 8px;
    }
    
    .hero .hero-content .date {
        font-size: 0.95rem;
    }

    .contador-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .contador-item {
        padding: 15px 10px;
    }

    .contador-item .numero {
        font-size: 1.5rem;
    }
}

/* public/css/convite.css - Adicionar no final */

/* ============================================
   REVEAL - Animações ao Scroll
   ============================================ */

/* Estado inicial (escondido) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado visível (animado) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Variações de animação */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-flip {
    opacity: 0;
    transform: perspective(600px) rotateX(30deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-flip.active {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
.delay-9 { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }

/* public/css/convite.css - Substituir a seção do Music Player */

/* ============================================
   MUSIC PLAYER - SIMPLIFICADO
   ============================================ */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-player:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);
    border-color: #c9a96e;
}

.music-player:active {
    transform: scale(0.95);
}

.music-player .player-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

/* Estado tocando */
.music-player.playing {
    border-color: #48bb78;
    animation: pulse 2s ease-in-out infinite;
}

.music-player.playing .player-icon {
    color: #48bb78;
}

.music-player.playing .player-icon i {
    animation: spin 3s linear infinite;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.3);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(72, 187, 120, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Badge de notificação (opcional) */
.music-player .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #48bb78;
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.4);
}

/* ===== TOOLTIP ===== */
.music-player .tooltip {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.music-player .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.music-player:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .music-player {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .music-player .player-icon {
        font-size: 1.2rem;
    }
    
    .music-player .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .music-player {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .music-player .player-icon {
        font-size: 1rem;
    }
}

/* public/css/convite.css - Adicionar */

/* public/css/convite.css - Adicionar ou substituir */

/* ============================================
   LISTA DE PRESENTES - PÚBLICA
   ============================================ */
.presentes-publicos {
    padding: 50px 30px;
    margin: 40px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.presentes-publicos h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #c9a96e;
    margin-bottom: 8px;
    font-weight: 700;
}

.presentes-publicos .presentes-subtitle {
    text-align: center;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.presentes-publicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.presente-publico-item {
    background: #f7fafc;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.presente-publico-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: #c9a96e;
}

.presente-publico-imagem {
    position: relative;
    height: 180px;
    background: #e2e8f0;
    overflow: hidden;
}

.presente-publico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.presente-publico-item:hover .presente-publico-imagem img {
    transform: scale(1.03);
}

.presente-publico-imagem .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3.5rem;
    color: #a0aec0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.presente-publico-status {
    position: absolute;
    top: 12px;
    right: 12px;
}

.presente-publico-status .disponivel {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(72, 187, 120, 0.9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.presente-publico-status .indisponivel {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(229, 62, 62, 0.85);
    color: #fff;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.categoria-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.presente-publico-info {
    padding: 18px 20px 20px;
}

.presente-publico-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.presente-publico-info .descricao {
    font-size: 0.88rem;
    color: #718096;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 40px;
}

.presente-publico-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.presente-publico-meta .valor {
    font-weight: 700;
    color: #c9a96e;
    font-size: 1.15rem;
}

.presente-publico-meta .valor i {
    font-size: 0.85rem;
    margin-right: 4px;
}

.presente-publico-meta .disponiveis {
    font-size: 0.8rem;
    color: #a0aec0;
}

.btn-comprar {
    display: inline-block;
    width: 100%;
    padding: 11px;
    background: #c9a96e;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-comprar:hover {
    background: #b8975a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.btn-comprar i {
    margin-right: 6px;
}

.presentes-vazios {
    text-align: center;
    padding: 40px 20px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.presentes-vazios p {
    color: #a0aec0;
    font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .presentes-publicos {
        padding: 30px 15px;
    }
    
    .presentes-publicos h2 {
        font-size: 1.8rem;
    }
    
    .presentes-publicos-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .presente-publico-imagem {
        height: 140px;
    }
    
    .presente-publico-info h3 {
        font-size: 0.95rem;
    }
    
    .presente-publico-info .descricao {
        font-size: 0.8rem;
        min-height: 30px;
    }
    
    .presente-publico-meta .valor {
        font-size: 1rem;
    }
    
    .presente-publico-status .disponivel,
    .presente-publico-status .indisponivel {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .presentes-publicos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .presente-publico-imagem {
        height: 120px;
    }
    
    .presente-publico-info {
        padding: 12px 14px 14px;
    }
    
    .presente-publico-info h3 {
        font-size: 0.85rem;
    }
    
    .presente-publico-info .descricao {
        font-size: 0.7rem;
        min-height: 20px;
        margin-bottom: 8px;
    }
    
    .presente-publico-meta .valor {
        font-size: 0.85rem;
    }
    
    .btn-comprar {
        font-size: 0.75rem;
        padding: 8px;
    }
}
/* public/css/convite.css - Adicionar */

.btn-reservar-publico {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #c9a96e;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-reservar-publico:hover {
    background: #b8975a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.btn-reservar-publico i {
    margin-right: 6px;
}

.btn-comprar {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #48bb78;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.btn-comprar:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.btn-comprar i {
    margin-right: 6px;
}