* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alegreya', serif;
    -webkit-tap-highlight-color: transparent; /* Remove o destaque de toque no celular */
}

html, body {
    height: 100%;
    overflow: hidden; /* Impede a rolagem da página inteira */
}

body {
    background-color: transparent; /* Mantém o fundo transparente */
}

.content-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px; /* Adiciona espaçamento lateral de 15px */
    overflow: hidden;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('src/img/sim.jpg');
    background-position: center;
    background-size: 150%;
    filter: blur(5px);
    z-index: -1;
    animation: panBackground 40s linear infinite;
}

@keyframes panBackground {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.desktop-message {
    display: none;
    text-align: center;
    padding: 20px 0; /* Mantém padding vertical, remove o horizontal */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com Safari */
}

.desktop-message i {
    font-size: 60px;
    color: #ff6b95;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.desktop-message h2 {
    color: #333;
    margin-bottom: 15px;
}

.desktop-message p {
    color: #666;
    line-height: 1.6;
}

.card-container {
    display: none;
    max-width: 450px;
    padding: 20px 0; /* Mantém padding vertical, remove o horizontal */
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com Safari */
}

@media (max-width: 768px) {
    .card-container {
        animation: fadeInUp 0.8s ease-out forwards;
    }
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px; /* Adiciona espaçamento lateral a todo o conteúdo do cartão */
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white; /* Borda interna branca */
    outline: 4px solid #9966CC; /* Borda externa lilás */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(153, 102, 204, 0.4); /* Sombra lilás */
    }
}

.name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.profession {
    font-size: 16px;
    color: #9966CC; /* Lilás Forte */
    margin-bottom: 10px;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.social-buttons a .social-btn {
    animation: popIn 0.5s ease-out forwards;
    opacity: 0; /* Começa invisível */
}


.social-buttons a {
    text-decoration: none;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Animação em cascata para os botões sociais */
.social-buttons a:nth-child(1) .social-btn {
    animation-delay: 0.4s;
}
.social-buttons a:nth-child(2) .social-btn {
    animation-delay: 0.6s;
}
.social-buttons a:nth-child(3) .social-btn {
    animation-delay: 0.8s;
}




.social-btn:hover {
    transform: translateY(-3px); /* Efeito de elevação no hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp { background: #25D366; }
.instagram { background: #E4405F; }
.location { background: #3b5998; }

.price-btn {
    background: linear-gradient(to right, #9966CC, #C8A2C8); /* Lilás Forte para Lilás */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(153, 102, 204, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.price-btn:hover {
    transform: translateY(-3px); /* Efeito de elevação no hover */
    box-shadow: 0 8px 20px rgba(153, 102, 204, 0.5);
}
.price-btn:focus-visible { /* Apenas box-shadow para focus-visible */
    box-shadow: 0 8px 20px rgba(153, 102, 204, 0.5);
}

.contact-info {
    width: 100%;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Define a cor e a largura para os ícones específicos do rodapé */
.info-item .fa-map-marker-alt,
.info-item .fa-whatsapp,
.info-item .fa-brands.fa-instagram { /* Ajustado para a classe Font Awesome 6 */
    color: #9966CC !important; /* Lilás Forte com !important para forçar a prioridade */
    width: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Para compatibilidade com Safari */
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    position: relative;
    background: linear-gradient(to right, #9966CC, #C8A2C8); /* Mesmo gradiente do botão Próximo */
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: white; /* Cor do texto para contrastar com o fundo */
}

.close-modal {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%); /* Centraliza verticalmente */
    background: transparent; /* Fundo transparente */
    border: none;
    width: 32px; /* Tamanho do círculo */
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px; /* Tamanho do ícone minimalista */
    color: #FF5A5F; /* Cor do ícone "X" */
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: translateY(-50%) scale(1.1); /* Efeito de escala no hover */
    background: rgba(0, 0, 0, 0.1); /* Fundo sutil no hover */
    color: #E0484C; /* Vermelho mais escuro no hover */
}
.close-modal:focus-visible { /* Apenas background e color para focus-visible */
    background: rgba(0, 0, 0, 0.1); /* Fundo sutil no hover */
    color: #E0484C; /* Vermelho mais escuro no hover */
}

.modal-body {
    padding: 20px;
}

.price-category.animating-out-left {
    animation: slideOutLeft var(--animation-duration, 0.4s) forwards ease-in-out;
}

.price-category.animating-in-right {
    animation: slideInRight var(--animation-duration, 0.4s) forwards ease-in-out;
}

.price-category.animating-out-right {
    animation: slideOutRight var(--animation-duration, 0.4s) forwards ease-in-out;
}

.price-category.animating-in-left {
    animation: slideInLeft var(--animation-duration, 0.4s) forwards ease-in-out;
}

.modal-body {
    --animation-duration: 0.4s; /* Define a duração da animação para as telas */
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100px); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100px); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.price-category {
    /* Garante que as telas não ocupem espaço quando não estão visíveis */
    position: relative;
}

.price-category {
    margin-bottom: 25px;
}

.price-category h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
    background: linear-gradient(to right, #9966CC, #C8A2C8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.price-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.service-name {
    color: #555;
}

.service-price {
    font-weight: 600;
    color: #333;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.nav-btn {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Estilo específico para o botão Próximo */
#nextBtn {
    background: linear-gradient(to right, #9966CC, #C8A2C8);
    color: white;
    box-shadow: 0 4px 10px rgba(153, 102, 204, 0.3);
}

#nextBtn:hover {
    transform: translateY(-2px); /* Efeito de elevação no hover */
    box-shadow: 0 6px 15px rgba(153, 102, 204, 0.4);
}
#nextBtn:focus-visible { /* Apenas box-shadow para focus-visible */
    box-shadow: 0 6px 15px rgba(153, 102, 204, 0.4);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5 !important; /* Garante que o fundo fique cinza quando desabilitado */
    color: #555 !important;
}

/* Remove o contorno padrão, pois usaremos box-shadow como indicador de foco */
a, button, input, textarea, select {
    outline: none !important;
}

/* Remove o contorno padrão de todos os elementos focáveis */
/* Esta regra é colocada no final para garantir a maior especificidade */
*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
/* Responsive */
@media (max-width: 768px) {
    .card-container {
        display: block;
    }
    
    .desktop-message {
        display: none;
    }
}

@media (min-width: 769px) {
    .card-container {
        display: none;
    }
    
    .desktop-message {
        display: block;
    }
}ge {
        display: block;
    }
}