/* Estilos Gerais */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: linear-gradient(90deg, #000000d0, #0d47a1);
    background-color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.botao {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 0 10px #00ccff;
    text-decoration: none;
}

.botao:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ccff;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}


.elemento {
    animation: fadeIn 0.5s ease-in-out;
}


/* Cabeçalho Superior Modernizado */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    color: #04070c;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

/* Adiciona um efeito de brilho sutil na barra superior */
.top-bar::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

.top-bar:hover::before {
    top: 0;
    left: 0;
}

/* Ícones de Redes Sociais Modernos */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Instagram - Gradiente Oficial */
.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    background-clip: text;
    background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

/* Facebook - Azul Oficial */
.facebook {
    color: #1877f2;
    transition: all 0.3s ease-in-out;
}

/* Ícone Play - Estilo YouTube */
.play {
    color: #ff0000;
    transition: all 0.3s ease-in-out;
}

/* Efeito Hover nos Ícones */
.social-icons a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* Saudação do Usuário com Animação de Degradê */
.top-bar .saudacao-usuario {
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff3b3b, #ff0080, #8a2be2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: saudacaoAnimada 3s infinite linear alternate;
}

/* Animação de Degradê */
@keyframes saudacaoAnimada {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Avisos Loja com Brilho e Animação */
.top-bar .avisos-loja {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    max-width: 50%;
    color: #ff3b3b;
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.8);
    animation: avisosBrilhando 1.5s infinite alternate;
}

/* Efeito de Brilho Pulsante */
@keyframes avisosBrilhando {
    0% { text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.8); }
    100% { text-shadow: 3px 3px 10px rgba(255, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 1); }
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

    .top-bar .avisos-loja {
        max-width: 100%;
        margin-top: 10px;
    }
}
/* Resetando estilos para evitar margens e espaçamentos errados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Resetando estilos para evitar margens extras */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ajuste para remover espaço branco acima do menu */
body {
    margin: 0;
    padding-top: 60px; /* Garante que o conteúdo fique abaixo do header */
}

/* Estilizando o Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    padding: 0.5rem 2rem;
    color: white;
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* Efeito sutil de brilho no header */
header::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}
/* Efeito hover no logo */
header .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    margin-left: 0;
    order: -1; /* Garante que a logo fique sempre à esquerda */
}

header .logo img {
    max-width: 185px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Ícone do menu sanduíche */
.menu-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
    order: 1; /* Mantém o menu à direita */
}

/* Menu principal */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #FFEB3B;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #FFEB3B;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}
/* Classe para exibir o menu */
.menu-open {
    display: flex !important;
    flex-direction: column;
}

/* Certifica que o menu aparece ao ser ativado */
@media (max-width: 768px) {
    #menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 15px 0;
        transition: all 0.3s ease-in-out;
    }

    .menu-open {
        display: flex !important;
        flex-direction: column;
    }
}


/* Ajustando responsividade */
@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    /* Logo à esquerda */
    .logo {
        order: -1;
        margin-left: 0;
    }

    /* Ícone do menu à direita */
    .menu-icon {
        display: block;
        order: 1;
        margin-left: auto;
    }

    /* Ajuste para evitar sobreposição da logo no carrossel */
    .logo img {
        position: relative;
        z-index: 10;
    }

    /* Ajustando o menu para abrir corretamente */
    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 15px 0;
        transition: all 0.3s ease-in-out;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
    #menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 15px 0;
        transition: all 0.3s ease-in-out;
    }

    .menu-open {
        display: flex !important;
        flex-direction: column;
    }
}

#carrossel {
    position: relative;
    width: 100%;
    height: 510px; /* altura */
    overflow: hidden;
}

#carrossel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carrossel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrossel-item.active {
    opacity: 1;
}

/* Ajuste da imagem para cobrir toda a área do carrossel sem distorcer */
.carrossel-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta a imagem para cobrir toda a área mantendo a proporção */
}

/* Estilizar os botões de navegação */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
}

.carrossel-btn.prev {
    left: 10px;
}

.carrossel-btn.next {
    right: 10px;
}

.carrossel-btn:hover {
    background-color: rgba(0, 0, 0, 0.678);
}




/* Animação para mensagens rotativas */
@keyframes slide {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-100%); }
    50%, 70% { transform: translateY(-200%); }
    75%, 95% { transform: translateY(-300%); }
    100% { transform: translateY(0); }
}

.top-bar .avisos-loja p {
    animation: slide 10s infinite;
}


/*recolocar cabeçalho aqui*/


/* Carrossel */
#carrossel {
    position: relative;
    overflow: hidden;
    background-color: #f1f1f1;
    width: 100%;
    height: 70vh; /* Altura do carrossel */
    max-height: 700px; /* Altura máxima para telas maiores */
}

/* Container do Carrossel */
.carrossel-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

/* Itens do Carrossel */
.carrossel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Imagens Ajustadas */
.carrossel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
}

/* Botões do Carrossel */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    border-radius: 50%;
}

.carrossel-btn.prev {
    left: 15px;
}

.carrossel-btn.next {
    right: 15px;
}

.carrossel-btn:hover {
    background: #FFEB3B;
    color: #0D47A1;
}

/* Responsividade */
@media (max-width: 768px) {
    #carrossel {
        height: 40vh; /* Reduz altura para telas menores */
        max-height: 400px;
    }

    .carrossel-btn {
        padding: 8px; /* Botões menores em telas pequenas */
        font-size: 16px;
    }
}


/* Seção de Captura de E-mail e Avaliação */
.email-promo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    color: white;
    gap: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;

 /* Animação de entrada */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

/* Animação Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

   


/* Título */
.email-promo h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.3);
}

/* Campo de E-mail */
.email-promo input {
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 5px;
    width: 250px;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Foco no Input */
.email-promo input:focus {
    border: 2px solid #FFEB3B;
    box-shadow: 0 0 12px rgba(255, 235, 59, 0.8);
    outline: none;
}

/* Botão */
.email-promo button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: #FFEB3B;
    color: #0D47A1;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0px 3px 10px rgba(255, 235, 59, 0.6);
}

/* Efeito Hover */
.email-promo button:hover {
    background: #FFD700;
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 235, 59, 0.8);
}

/* Efeito de Clique */
.email-promo button:active {
    transform: scale(0.95);
}

/* Div de Avaliação */
.email-promo .review {
    text-align: center;
}

/* Ícones de Estrelas */
.email-promo .star-icon {
    font-size: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
    color: #ffffffb3;
}

/* Efeito de brilho nas estrelas */
.email-promo .star-icon:hover {
    transform: scale(1.3);
    color: #FFD700;
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8), 0px 0px 20px rgba(255, 235, 59, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .email-promo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .email-promo input {
        width: 100%;
        margin-right: 0;
    }

    .email-promo button {
        width: 100%;
    }

    .email-promo .review {
        margin-top: 10px;
    }
}


/* Conheça Nossa Equipe */
.atendentes {
    padding: 2rem;
    background-color: #fff;
    text-align: center;
}

.atendentes h2 {
    font-size: 2rem;
    color: #000000ab;
    margin-bottom: 1rem;
}

.atendentes-carrossel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.atendente {
    background-color: rgba(127, 127, 145, 0.2);
    text-align: center;
    flex: 1;
    max-width: 220px;
    margin: 0 15px 20px;
    padding: 30px;
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.atendente:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-color: #FFEB3B;
}


.atendente img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.atendente p {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #0D47A1;
    transition: background 0.3s ease, transform 0.2s ease;
}

.atendente:hover p {
    background: linear-gradient(135deg, #ffdd33, #ffb300);
    transform: scale(1.05);
}


/* Responsividade */
@media (max-width: 768px) {
    .atendentes-carrossel {
        flex-direction: column;
        align-items: center;
    }

    .atendente {
        max-width: 100%;
        margin: 15px 0; /* Ajustei para espaçamento vertical apenas */
    }

    .atendente img {
        width: 120px;
        height: 120px;
    }

    .atendente p {
        font-size: 0.9rem;
    }
}


/* Container principal */
.produtos-carrossel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Lista de produtos (carrossel) */
.produtos-lista {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    white-space: nowrap;
}




/* Cada produto */
.produto-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
}


/* Imagem do produto */
.produto-imagem {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.produto-item:hover .produto-imagem {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Nome do produto */
.produto-nome {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

/* Botões de navegação */
.produtos-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.produtos-btn:hover {
    background-color: rgba(215, 200, 35, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .produtos-btn {
        font-size: 16px;
        padding: 8px;
    }
}



#tele-entrega {
    background: linear-gradient(90deg, #000000d0, #0d47a1); /* Gradiente preto para azul */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Efeito de brilho ao passar o mouse */
#tele-entrega::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

#tele-entrega:hover::before {
    top: 0;
    left: 0;
}

/* Texto link estilizado */
#tele-entrega h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

/* Link dentro do título */
#tele-entrega h2 a {
    text-decoration: none;
    color: white;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

/* Efeito ao passar o mouse */
#tele-entrega h2 a:hover {
    color: #ffeb3b; /* Amarelo destaque */
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    #tele-entrega h2 {
        font-size: 1.5rem;
    }
}



  

/* Serviços e Localização */
#info-mapa {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 2rem;
    background-color: #fff;
    color: #000000b9;
}

#info, #mapa {
    flex: 1;
}

#info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000b9;
}

#info ul {
    list-style: disc;
    padding-left: 1.5rem;
}

#info ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

#info p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #333;
}

#mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    #info-mapa {
        flex-direction: column;
        padding: 1.5rem;
    }

    #info, #mapa {
        flex: 0 0 100%; /* Cada seção ocupará 100% da largura */
        margin-bottom: 20px; /* Espaço entre as seções */
    }

    #mapa iframe {
        height: 250px; /* Ajusta a altura do mapa para telas menores */
    }

    #info h2 {
        font-size: 1.8rem;
    }

    #info ul li {
        font-size: 0.95rem;
    }

    #info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #info h2 {
        font-size: 1.6rem;
    }

    #info ul li {
        font-size: 0.9rem;
    }

    #info p {
        font-size: 0.95rem;
    }

    #mapa iframe {
        height: 200px; /* Ajusta mais a altura do mapa em telas menores */
    }
}
/*função waze e maps*/
.map-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.map-button {
    border: none;
    background: none;
    cursor: pointer;
}
.map-button img {
    width: 60px;
    height: 60px;
}
.cancel-button {
    display: block;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    color: red;
    font-size: 18px;
}

/* Rodapé */
/* Rodapé com efeito igual ao #tele-entrega */
footer {
    background: linear-gradient(90deg, #000000d0, #0d47a1); /* Gradiente preto para azul */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px -3px 15px rgba(0, 0, 0, 0.3); /* Efeito de sombra */
}

/* Efeito de luz dinâmica */
footer::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

footer:hover::before {
    top: 0;
    left: 0;
}

/* Efeito ao passar o mouse */
footer:hover {
    box-shadow: 0px -5px 20px rgba(255, 255, 255, 0.2);
}

/* Links do rodapé */
footer a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

/* Animação nos links ao passar o mouse */
footer a:hover {
    color: #ffeb3b; /* Amarelo destaque */
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    footer {
        font-size: 0.9rem;
        padding: 15px 0;
    }
}


/* Estilizando o texto do rodapé */
footer p {
    margin: 0;
    font-size: 1rem;
}

/* Ícones sociais no rodapé */
footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efeito ao passar o mouse nos ícones */
footer .social-icons a:hover {
    transform: scale(1.2);
    color: #FFEB3B;
}



footer a {
    color: #ffffffbd;
    text-decoration: none;
    font-weight: bold;
}



/* Estilos do iPhone */
.iphone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.iphone-container.active {
    visibility: visible;
    opacity: 1;
}

.iphone {
    width: 260px;
    height: 520px;
    background-color: #222;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 5px solid #111;
}

/* Simulando notch do iPhone */
.iphone::before {
    content: "";
    width: 80px;
    height: 10px;
    background-color: black;
    position: absolute;
    top: 5px;
    border-radius: 10px;
}

.screen {
    width: 90%;
    height: 85%;
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.message-box {
    width: 100%;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.keyboard {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

input#name-input {
    width: 90%;
    padding: 8px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
}

button#submit-btn {
    padding: 8px 15px;
    background-color: #0D47A1;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button#submit-btn:hover {
    background-color: #2196F3;
}

/* Botão Home do iPhone 
.iphone::after {
    content: "";
    width: 30px;
    height: 30px;
    background-color: black;
    position: absolute;
    bottom: 10px;
    border-radius: 50%;
    border: 2px solid #444;
}*/




/* Botão do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(37, 211, 102, 0.8);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #25D366;
}

.whatsapp-float i {
    font-size: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
    
    

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 20px;
    }

}