/* Botão confirmar presente (pill) */
.btn-confirmar {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 24px auto 0 auto;
  padding: 14px 0;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 32px !important;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-confirmar:hover {
  background: #bfa233;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}
/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Importando fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
}

.logo-amp {
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-weight: 300;
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Espaço para o header fixo */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.couple-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-text {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 2rem 12px;
}

.couple-names {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.couple-names-amp {
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-weight: 300;
}

.wedding-date {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d4af37;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.countdown-item label {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

.countdown-finished {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.countdown-finished h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-finished p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.75); /* Mais escuro e mais opaco */
    z-index: 1;
}

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

/* Nossa História */
.nossa-historia {
    padding: 5.25rem 0 3.125rem 0;
    background: #f8f9fa;
}

.nossa-historia h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4af37;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 50px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 100px;
    text-align: center;
    font-weight: 700;
    color: #d4af37;
    font-size: 1.2rem;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    position: relative;
}

.timeline-content h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Evento */
.evento {
    padding: 50px 0 50px 0;
    background: #fff;
}

.evento h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 3rem;
}

.evento-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.evento-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-10px);
}

.evento-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.evento-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #b8941f;
}

/* Presentes */
.presentes {
    padding: 50px 0 50px 0;
    background: #f8f9fa;
}

.presentes-hero {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.presentes-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.presentes-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.presentes h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 2rem;
}

.presentes-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.presentes-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gift-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gift-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gift-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.gift-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-card:hover .gift-image img {
    transform: scale(1.05);
}

.gift-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gift-content .btn-gift {
    margin-top: auto;
    align-self: center;
}

.gift-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.gift-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-gift {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-gift:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-load-more:hover {
    background: #555;
    transform: translateY(-2px);
}

/* PIX Card Styles */
.pix-card {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.pix-info {
    margin: 1rem 0;
    text-align: center;
}

.pix-email {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.qr-code-placeholder {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    opacity: 0.7;
}

.qr-code-placeholder svg {
    color: #666;
}

.btn-copy-pix {
    background: #28a745;
}

.btn-copy-pix:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.presente-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.presente-card:hover {
    transform: translateY(-5px);
}

.presente-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.presente-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-copy, .btn-lista {
    background: #d4af37;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-copy:hover, .btn-lista:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    font-family: 'Dancing Script', cursive;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
}

/* Confirmação */
.confirmacao {
    padding: 100px 0;
    background: #fff;
}

.confirmacao h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 1rem;
}

.confirmacao p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.confirmacao-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-confirmar {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0 auto;
    padding: 14px 0;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 32px !important;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-confirmar:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

/* Countdown Finalizado */
.countdown-finished {
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.countdown-finished h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-finished p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Pais e Filha */
.pais-e-filha {
    padding: 5.25rem 0 3.125rem 0;
    background: #f8f9fa;
}

.pais-e-filha h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 1rem;
}

.pais-e-filha-verse {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.raizes-section,
.fruto-section {
    margin-bottom: 4rem;
}

.raizes-section:last-child,
.fruto-section:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 2.5rem;
}

.pais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.pais-grid-fixed {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
}

.filha-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.familia-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
}

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

.familia-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.familia-card:hover .familia-photo {
    transform: scale(1.05);
}

.familia-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.familia-info h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #d4af37;
    margin: 0;
    font-weight: 600;
}

/* Padrinhos */
.padrinhos {
    padding: 5.25rem 0 3.125rem 0;
    background: #fff;
}

.padrinhos h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 1rem;
}

.padrinhos-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.padrinhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.padrinho-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.padrinho-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.padrinho-card:hover .padrinho-photo {
    transform: scale(1.05);
}

.padrinho-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.padrinho-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.padrinho-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Galeria de Fotos */
.galeria {
    padding: 5.25rem 0 3.125rem 0;
    background: #f8f9fa;
}

.galeria h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.galeria-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.foto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.foto-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.foto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foto-item:hover .foto-overlay {
    opacity: 1;
}

.foto-overlay svg {
    width: 50px;
    height: 50px;
    color: white;
}

/* Modal Instagram */
.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    margin: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #efefef;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.profile-details p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #f5f5f5;
}

.modal-image-container {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}


.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 3;
    align-items: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.modal-content-area {
    padding: 16px 20px;
    border-top: 1px solid #efefef;
}

.likes-section {
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.action-btn:hover {
    background: #f5f5f5;
}

.action-btn.liked svg {
    fill: #ed4956;
    stroke: #ed4956;
}

.likes-count {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.caption-section {
    margin-bottom: 12px;
}

.caption-content {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.caption-content strong {
    margin-right: 8px;
}

.post-date {
    font-size: 12px;
    color: #8e8e8e;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding-top: 100px; /* Mais espaço no mobile */
        min-height: 100vh;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-image {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    
    .couple-photo {
        width: 250px;
        height: 250px;
    }
    
    .couple-names {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .evento-details {
        grid-template-columns: 1fr;
    }
    
    .presentes-options {
        grid-template-columns: 1fr;
    }
    
    .padrinhos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .padrinho-card {
        padding: 1rem;
        margin: 0;
    }
    
    .padrinho-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
        flex-shrink: 0;
    }
    
    .pais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .pais-grid-fixed {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .familia-card {
        max-width: 100%;
    }
    
    .familia-photo {
        width: 120px;
        height: 120px;
    }
    
    .foto-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .modal-content {
        margin: 0;
        max-height: 100vh;
        height: 100vh;
    }
    .modal-image-container {
        min-height: 0;
        max-height: none;
    }
    
    .modal-content {
        margin: 0;
        max-height: 100vh;
        height: 100vh;
    }
    .modal-image-container {
        min-height: 0;
        max-height: none;
    }
    .gift-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gift-card {
        margin: 0 1rem;
    }
    
    .presentes-hero h1 {
        font-size: 2.5rem;
    }
    
    .presentes-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px; /* Ajuste para telas muito pequenas */
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-image {
        margin-top: 0.5rem;
    }
    
    .couple-names {
        font-size: 2rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .nossa-historia h2,
    .evento h2,
    .presentes h2,
    .confirmacao h2,
    .padrinhos h2,
    .pais-e-filha h2 {
        font-size: 2rem;
    }
    
    .galeria h2 {
        font-size: 2.5rem;
    }
     .galeria h2 {
        font-size: 2.5rem;
    }
    
    .padrinhos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .padrinho-card {
        padding: 0.8rem;
    }
    
    .padrinho-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        border-width: 3px;
        flex-shrink: 0;
    }
    
    .padrinho-info h3 {
        font-size: 1.2rem;
    }
    
    .padrinho-info p {
        font-size: 0.85rem;
    }
    
    .subsection-title {
        font-size: 1.8rem;
    }
    
    .familia-photo {
        width: 100px;
        height: 100px;
    }
    
    .pais-grid-fixed .familia-photo {
        width: 90px;
        height: 90px;
    }
    
    .familia-info h4 {
        font-size: 1.2rem;
    }
    
    .pais-grid-fixed .familia-info h4 {
        font-size: 1rem;
    }
}

/* Ajuste para o modal de imagem no desktop */
@media (min-width: 769px) {
  .modal-content {
    max-width: 420px;
    width: 95vw;
  }
  .modal-image-container {
    min-height: 320px;
    max-height: 70vh;
    height: auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 3;
    align-items: center;
  }
  .nav-btn {
    pointer-events: auto;
  }
  .modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
  }
}

/* Ajuste para o modal de imagem no desktop */
@media (min-width: 769px) {
  .modal-content {
    max-width: 420px;
    width: 95vw;
  }
  .modal-image-container {
    min-height: 320px;
    max-height: 70vh;
    height: auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 3;
    align-items: center;
  }
  .nav-btn {
    pointer-events: auto;
  }
  .modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
  }
}

/* Gift Modal Custom Styles */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
.gift-modal.show {
    display: flex !important;
}
.gift-modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 20001;
}
.gift-modal-close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 20002;
}
.gift-modal-close:hover {
    color: #333;
}
.gift-modal h2 {
    font-family: 'Dancing Script', cursive;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
}

/* Estilo dos campos do formulário do modal de presentes */
.gift-form-group {
    margin-bottom: 1.5rem;
}
.gift-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}
.gift-form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
    color: #333;
    box-sizing: border-box;
}
.gift-form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fffbe6;
}
.gift-form-group input[type="number"]::-webkit-inner-spin-button,
.gift-form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.gift-form-group input[type="number"] {
    -moz-appearance: textfield;
}
/* Gift Modal Custom Styles */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
.gift-modal.show {
    display: flex !important;
}
.gift-modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 20001;
}
.gift-modal-close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 20002;
}
.gift-modal-close:hover {
    color: #333;
}
.gift-modal h2 {
    font-family: 'Dancing Script', cursive;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
}

/* Estilo dos campos do formulário do modal de presentes */
.gift-form-group {
    margin-bottom: 1.5rem;
}
.gift-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}
.gift-form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
    color: #333;
    box-sizing: border-box;
}
.gift-form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fffbe6;
}
.gift-form-group input[type="number"]::-webkit-inner-spin-button,
.gift-form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.gift-form-group input[type="number"] {
    -moz-appearance: textfield;
}
/* Photo Upload Page Styles */
.fotos-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotos-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.full-width-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fotos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.fotos-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.fotos-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fotos-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Upload Section */
.upload-section {
    /* padding: 4rem 0; */
    background: #f8f9fa;
}

.upload-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    /* margin-top: 2rem;
    margin-bottom: 3rem; */
    flex-wrap: wrap;
}

.upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0;
    font-weight: 600;
    color: #d4af37;
    min-width: auto;
    box-shadow: none;
}

.upload-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: scale(1.1);
    box-shadow: none;
}

.btn-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.upload-btn:hover .btn-icon {
    transform: scale(1.1);
}

.upload-btn span {
    display: none;
}

/* Active navigation link */
.nav-links a.active {
    color: #d4af37;
    font-weight: 600;
}

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

/* Preview Area */
.preview-area {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.preview-area h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.preview-remove:hover {
    background: rgba(255, 0, 0, 1);
}

.upload-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #d4af37;
    color: white;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    color: #d4af37;
}

/* Responsive adjustments for photo upload page */
@media (max-width: 768px) {
    .fotos-title {
        font-size: 2.5rem;
    }
    
    .fotos-subtitle {
        font-size: 1rem;
    }
    
    .upload-buttons {
        gap: 2rem;
    }
    
    .upload-btn {
        min-width: auto;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .upload-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Padrinhos Modal */
.padrinhos-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.padrinhos-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    text-align: center;
    overflow: hidden;
}

.padrinhos-modal-image-container {
    position: relative;
    padding: 30px 30px 20px;
    display: flex;
    justify-content: center;
}

.padrinhos-modal-image-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.padrinhos-modal-name {
    padding: 0 30px 30px;
}

.padrinhos-modal-name h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #d4af37;
    margin: 0;
    font-weight: 600;
}

.padrinhos-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3001;
}

.padrinhos-modal .close-btn:hover {
    background: white;
    color: #333;
    transform: scale(1.1);
}

/* Responsive design for padrinhos modal */
@media (max-width: 480px) {
    .padrinhos-modal-content {
        max-width: 320px;
    }
    
    .padrinhos-modal-image-container {
        padding: 20px 20px 15px;
    }
    
    .padrinhos-modal-image-container img {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .padrinhos-modal-name {
        padding: 0 20px 20px;
    }
    
    .padrinhos-modal-name h3 {
        font-size: 1.6rem;
    }
}

/* Desktop enhancement for padrinhos modal (larger view on wide screens) */
@media (min-width: 900px) {
    .padrinhos-modal-content {
        max-width: 780px; /* increase modal width on desktop */
        padding-top: 30px; /* a little breathing space */
    }
    .padrinhos-modal-image-container {
        padding: 40px 40px 25px;
    }
    .padrinhos-modal-image-container img {
        width: 300px;
        height: 300px;
        border-width: 8px;
    }
    .padrinhos-modal-name {
        padding: 0 40px 40px;
    }
    .padrinhos-modal-name h3 {
        font-size: 3rem; /* bigger name on desktop */
    }
    .padrinhos-modal .close-btn {
        top: 20px;
        right: 20px;
        padding: 10px;
    }
}

/* Ultra-wide screens: allow even bigger presentation */
@media (min-width: 1400px) {
    .padrinhos-modal-content {
        max-width: 900px;
    }
    .padrinhos-modal-image-container img {
        width: 340px;
        height: 340px;
    }
    .padrinhos-modal-name h3 {
        font-size: 3.2rem;
    }
}

/* Mural de Recados */
.mural {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.mural h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: #d4af37;
    margin-bottom: 15px;
}

.mural-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
}



/* Lista de mensagens */
.mensagens-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.mensagens-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.mensagens-header h3 {
    font-family: 'Dancing Script', cursive;
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 600;
}

.mensagens-count {
    background: #d4af37;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.mensagens-list {
    display: grid;
    gap: 20px;
}

/* Card individual de mensagem */
.mensagem-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #d4af37;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeInUp 0.5s ease-out;
}

.mensagem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mensagem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mensagem-nome {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.mensagem-data {
    color: #999;
    font-size: 0.9rem;
}

.mensagem-texto {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Loading states */
.loading-messages {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.btn-carregar-mais {
    background: #f8f8f8;
    color: #666;
    border: 2px solid #e8e8e8;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
    min-width: 200px;
}

.btn-carregar-mais:hover {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}



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

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

/* Estado vazio do mural */
.mural-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.mural-empty-state svg {
    width: 80px;
    height: 80px;
    color: #d4af37;
    margin-bottom: 20px;
}

.mural-empty-state h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.mural-empty-state p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Smooth scroll para navegação */
html {
    scroll-behavior: smooth;
}

/* Responsividade do mural */
@media (max-width: 768px) {
    .mural {
        padding: 60px 0;
    }
    
    .mural h2 {
        font-size: 2rem;
    }
    
    .mensagens-container {
        padding: 30px 20px;
        margin: 0 10px 40px;
        border-radius: 10px;
    }
    
    .mensagens-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mensagem-card {
        padding: 20px;
    }
    
    .mensagem-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    

    
    .mural-empty-state svg {
        width: 60px;
        height: 60px;
    }
    
    .mural-empty-state h3 {
        font-size: 1.3rem;
    }
    
    .mural-empty-state p {
        font-size: 1rem;
    }
}