* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px; /* Para acomodar o cabeçalho */
    padding-bottom: 100px; /* Para acomodar o rodapé */
}

/* Centralizar o conteúdo da página */
.container {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

/* Estilos para o cabeçalho */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-left span, .header-right span {
    margin: 0 10px;
}

.menu-icon, .email-icon, .search-icon, .heart-icon, .cart-icon {
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-left span, .header-right span {
        margin: 0 5px;
    }
}

/* Estilos do rodapé */
.mobile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #767676;
}

.footer-item p {
    margin-top: 5px;
    font-size: 12px;
    color: #000;
}

.footer-item svg {
    color: #000;
    fill: currentColor;
}

@media (max-width: 768px) {
    .footer-item p {
        font-size: 10px;
    }
}

/* Estilos para o conteúdo */
h1 {
    font-size: 24px;
    color: #ff4081;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Estilo para o link como botão */
a.btn {
    display: block;
    padding: 12px 20px;
    background-color: #ff4081;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite; /* Adiciona a animação de pulsar */
}

/* Animação no hover */
a.btn:hover {
    background-color: #ff6090;
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Aumenta ligeiramente o botão */
    }
    100% {
        transform: scale(1); /* Volta ao tamanho original */
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    a.btn {
        font-size: 16px;
    }
}
