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

:root {
    --roxo-principal: #7A4BA0;
    --roxo-claro: #BFA2D6;
    --rosa-suave: #C06C84;
    --cinza-claro: #F8F6FA;
    --roxo-escuro: #5E3370;
    --branco: #FFFFFF;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--cinza-claro);
    color: var(--roxo-escuro);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Flores animadas de fundo */
.flores-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flor-svg {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.25;
    filter: drop-shadow(0 2px 8px rgba(122, 75, 160, 0.2));
}

.flor-1 { top: 10%; left: 10%; }
.flor-2 { top: 20%; left: 80%; width: 70px; height: 70px; }
.flor-3 { top: 50%; left: 15%; width: 90px; height: 90px; }
.flor-4 { top: 70%; left: 85%; width: 75px; height: 75px; }
.flor-5 { top: 80%; left: 30%; width: 85px; height: 85px; }
.flor-6 { top: 40%; left: 70%; width: 95px; height: 95px; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* Navegação - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(122, 75, 160, 0.1);
    box-sizing: border-box;
    min-height: auto;
}

.nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--roxo-principal);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link svg {
    width: 12px;
    height: 12px;
}

.nav-link:hover {
    background: var(--roxo-claro);
    color: white;
    transform: translateY(-2px);
}

/* Páginas/Seções - Mobile First */
.page {
    min-height: 100vh;
    padding: 65px 15px 30px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Telas muito pequenas (416px e abaixo) */
@media (max-width: 416px) {
    .navbar {
        padding: 5px 6px;
        gap: 3px;
    }

    .nav-link {
        font-size: 10px;
        padding: 3px 6px;
        gap: 2px;
    }

    .nav-link svg {
        width: 11px;
        height: 11px;
    }

    .page {
        padding: 60px 12px 25px;
    }
}

.content-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

/* Seção Boas-Vindas */
.boas-vindas {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF9FB 0%, #F8F6FA 50%, #FFF5FE 100%);
    position: relative;
    overflow: hidden;
}

.boas-vindas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(191, 162, 214, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(122, 75, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.boas-vindas .content-wrapper {
    position: relative;
    z-index: 1;
}

.nome-principal {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--roxo-principal);
    margin-bottom: 20px;
    animation: fadeInScale 1.5s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.separador {
    font-size: 32px;
    margin: 20px 0;
    animation: fadeIn 2s ease;
}

.mensagem-boas-vindas {
    margin: 30px auto;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.mensagem-boas-vindas p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--roxo-escuro);
    margin: 18px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Animação typewriter removida - texto aparece normalmente */

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2s; }
.delay-5 { animation-delay: 2.5s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



.btn-proximo {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: var(--roxo-principal);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease 7.5s backwards;
}

.btn-proximo:hover {
    background: var(--roxo-escuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 75, 160, 0.3);
}

/* Seção Convidados */
.convidados {
    background: var(--branco);
}

.titulo-secao {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--roxo-principal);
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.icone-titulo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

.subtitulo-convidados {
    font-size: 16px;
    color: var(--roxo-escuro);
    margin-bottom: 20px;
    font-weight: 600;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

/* Controles de Convidados */
.controles-convidados {
    margin-bottom: 25px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.busca-convidados {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.icone-busca {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-busca {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--roxo-claro);
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--roxo-escuro);
    background: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-busca:focus {
    outline: none;
    border-color: var(--roxo-principal);
    box-shadow: 0 0 0 3px rgba(122, 75, 160, 0.1);
}

.input-busca::placeholder {
    color: var(--roxo-claro);
}

.sem-resultados {
    text-align: center;
    padding: 40px 20px;
    color: var(--roxo-escuro);
    font-size: 18px;
    font-style: italic;
    background: var(--cinza-claro);
    border-radius: 15px;
    margin-top: 20px;
}

.lista-convidados {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    padding: 0 10px;
    box-sizing: border-box;
}

.convidado-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9FB 100%);
    padding: 18px 18px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 3px 15px rgba(122, 75, 160, 0.08);
}

.convidado-item:hover {
    border-color: var(--roxo-claro);
    box-shadow: 0 5px 25px rgba(122, 75, 160, 0.15);
    transform: translateY(-2px);
}

.convidado-nome {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: var(--roxo-escuro);
    font-weight: 600;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

.convidado-acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.btn-confirmar {
    background: linear-gradient(135deg, var(--roxo-principal) 0%, var(--roxo-escuro) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(122, 75, 160, 0.3);
}

.btn-confirmar:hover {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo-principal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 75, 160, 0.4);
}

.btn-confirmar:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.botoes-acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-recusar {
    background: #8B7D8B;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-recusar:hover {
    background: #6B5D6B;
    transform: scale(1.05);
}

.btn-recusar:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-remover {
    background: var(--rosa-suave);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-remover:hover {
    background: #A05571;
    transform: scale(1.05);
}

.btn-remover:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.toggle-acompanhante {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--roxo-escuro);
}

.toggle-checkbox {
    width: 40px;
    height: 20px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-checkbox.ativo {
    background: var(--roxo-principal);
}

.toggle-checkbox::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle-checkbox.ativo::after {
    transform: translateX(20px);
}

.confirmado {
    background: linear-gradient(135deg, #BFA2D6 0%, #7A4BA0 100%);
    color: white;
    border-color: var(--roxo-principal);
    box-shadow: 0 5px 25px rgba(122, 75, 160, 0.25);
}

.confirmado .convidado-nome {
    color: white;
}

.confirmado .btn-confirmar {
    background: var(--roxo-escuro);
}

.recusado {
    background: linear-gradient(135deg, #8B7D8B 0%, #6B5D6B 100%);
    color: white;
    border-color: #6B5D6B;
    opacity: 0.8;
}

.recusado .convidado-nome {
    color: white;
}

/* Seção Não Encontrou */
.nao-encontrou {
    margin-top: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #FAF9FB 0%, #F8F6FA 100%);
    border-radius: 20px;
    border: 2px dashed var(--roxo-claro);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(122, 75, 160, 0.1);
    transition: all 0.3s ease;
}

.nao-encontrou:hover {
    box-shadow: 0 8px 30px rgba(122, 75, 160, 0.15);
    transform: translateY(-2px);
}

.icone-ajuda {
    display: block;
    margin: 0 auto 15px;
}

.texto-ajuda {
    font-size: 22px;
    color: var(--roxo-escuro);
    font-weight: 600;
    margin-bottom: 10px;
}

.texto-ajuda-subtitulo {
    font-size: 16px;
    color: var(--roxo-principal);
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
}

.form-nome-customizado {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    width: 100%;
}

.input-nome-customizado {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--roxo-claro);
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--roxo-escuro);
    background: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.input-nome-customizado:focus {
    outline: none;
    border-color: var(--roxo-principal);
    box-shadow: 0 0 0 3px rgba(122, 75, 160, 0.1);
}

.input-nome-customizado::placeholder {
    color: var(--roxo-claro);
}

.botoes-nome-customizado {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn-confirmar-custom {
    background: linear-gradient(135deg, var(--roxo-principal) 0%, var(--roxo-escuro) 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(122, 75, 160, 0.3);
}

.btn-confirmar-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 75, 160, 0.4);
}

.btn-confirmar-custom:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-recusar-custom {
    background: linear-gradient(135deg, #8B7D8B 0%, #6B5D6B 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(139, 125, 139, 0.3);
}

.btn-recusar-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 125, 139, 0.4);
}

.btn-recusar-custom:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.numero-whatsapp {
    margin-top: 15px;
    font-size: 18px;
    color: var(--roxo-escuro);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Seção História */
.historia {
    background: linear-gradient(135deg, #FAF9FB 0%, #F8F6FA 100%);
}

.texto-historia {
    max-width: 100%;
    width: 100%;
    margin: 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.texto-historia p {
    font-size: 18px;
    line-height: 1.9;
    margin: 20px 0;
    color: var(--roxo-escuro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: justify;
}

.texto-emocionante {
    text-align: justify;
    font-style: italic;
    line-height: 2;
    padding: 15px;
    background: rgba(191, 162, 214, 0.08);
    border-radius: 15px;
    border-left: 4px solid var(--roxo-principal);
    margin: 20px 0;
}

.timeline {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.timeline-item {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(122, 75, 160, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 75, 160, 0.2);
}

.timeline-icone {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}


.timeline-item p {
    font-size: 18px;
    color: var(--roxo-escuro);
    line-height: 1.6;
}

/* Seção Local */
.local {
    background: var(--branco);
}

.local-info {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.info-box {
    background: var(--cinza-claro);
    padding: 20px 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.info-box h3 {
    font-size: 22px;
    color: var(--roxo-principal);
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.info-box p {
    font-size: 16px;
    margin: 10px 0;
    color: var(--roxo-escuro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.info-box p.endereco {
    font-size: 16px;
}

.icone-info {
    flex-shrink: 0;
}

.mapa-container {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.mapa-container iframe {
    width: 100% !important;
    max-width: 100%;
    height: 300px;
    border: 0;
    border-radius: 15px;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

.btn-mapa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--rosa-suave);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-mapa svg {
    flex-shrink: 0;
}

.btn-mapa:hover {
    background: #A05571;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 108, 132, 0.3);
}

/* Rodapé - SEM FLORES */
.rodape {
    background: linear-gradient(135deg, #7A4BA0 0%, #5E3370 100%);
    padding: 15px 15px;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: auto;
}


.assinatura {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    margin: 0 0 8px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.coracao-rodape {
    margin-top: 5px;
    display: flex;
    justify-content: center;
}

/* Botão Voltar ao Topo */
.btn-topo {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--roxo-principal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(122, 75, 160, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.btn-topo.visivel {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.btn-topo:hover {
    background: var(--roxo-escuro);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(122, 75, 160, 0.6);
}

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

/* Responsividade - Media Queries para Desktop */
@media (min-width: 769px) {
    .page {
        padding: 100px 30px 50px;
    }

    .nome-principal {
        font-size: 96px;
    }

    .titulo-secao {
        font-size: 64px;
        padding: 0;
    }

    .navbar {
        padding: 12px 30px;
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
        padding: 7px 14px;
        gap: 5px;
    }

    .nav-link svg {
        width: 16px;
        height: 16px;
    }

    .mensagem-boas-vindas {
        max-width: 700px;
        padding: 0;
    }

    .mensagem-boas-vindas p {
        font-size: 22px;
        margin: 20px 0;
    }

     /* Animação typewriter removida */

    .convidado-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
    }

    .convidado-nome {
        font-size: 24px;
        text-align: left;
    }

    .convidado-acoes {
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .btn-confirmar {
        width: auto;
    }

    .botoes-acoes {
        flex-direction: row;
        gap: 10px;
        width: auto;
    }

    .btn-recusar {
        width: auto;
    }

    .btn-remover {
        width: auto;
    }

    .texto-historia p {
        font-size: 24px;
        flex-direction: row;
        gap: 12px;
    }

    .flor-svg {
        width: 80px;
        height: 80px;
    }

    .flor-decorativa {
        width: 50px;
        height: 50px;
    }

    .nao-encontrou {
        padding: 40px;
    }

    .botoes-nome-customizado {
        flex-direction: row;
        justify-content: center;
    }

    .btn-confirmar-custom,
    .btn-recusar-custom {
        width: auto;
        min-width: 200px;
    }

    .info-box {
        padding: 30px;
    }

    .info-box h3 {
        font-size: 28px;
    }

    .info-box p {
        font-size: 20px;
        flex-direction: row;
        gap: 10px;
    }

    .mapa-container iframe {
        height: 400px;
    }

    .btn-mapa {
        width: auto;
        padding: 15px 35px;
        font-size: 18px;
    }

    .content-wrapper {
        max-width: 1200px;
    }

    .lista-convidados {
        max-width: 800px;
        padding: 0;
    }

    .subtitulo-convidados {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .controles-convidados {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 800px;
        margin: 0 auto 30px;
        padding: 0;
    }

    .busca-convidados {
        flex: 1;
        max-width: 400px;
    }

    .input-busca {
        font-size: 18px;
    }

    .rodape {
        padding: 20px 20px;
    }

    .assinatura {
        font-size: 28px;
    }

    .separador {
        font-size: 32px;
    }

    .timeline {
        max-width: 600px;
        padding: 0;
    }

    .timeline-item {
        padding: 30px;
    }

    .texto-historia {
        max-width: 800px;
        padding: 0;
    }

    .texto-historia p {
        font-size: 20px;
        line-height: 2.2;
        margin: 25px 0;
        padding: 25px;
        text-align: justify;
    }

    .texto-emocionante {
        font-size: 20px;
        padding: 25px;
        line-height: 2.2;
        background: rgba(191, 162, 214, 0.1);
    }

    .local-info {
        margin-top: 40px;
        padding: 0;
    }
}

