/* pagamento.css */

/* Estilos gerais da seção */
#formas-pagamento {
   
    text-align: center;
    padding: 80px 20px;
    background-color: white;
    margin-top: 40px;
}

.button {
  background-color: #F58220;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease;
}

#formas-pagamento h2 {
    margin-top: 50px;
    font-size: 2.8em;
    color: #333;
    margin-bottom: 60px;
    font-weight: 800; /* Mais negrito */
}

/* Contêiner para os métodos de pagamento */
.payment-methods-container {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar linha para responsividade */
    justify-content: center;
    gap: 30px; /* Espaçamento entre os cartões */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* entregas.css */
.entregas{
    margin-top: 130px;
}

#processo-entrega {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    margin-top: px;
    margin-bottom: 50px;
}

#processo-entrega h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.timeline-container-horizontal { /* Novo contêiner para layout horizontal */
    display: flex;
    flex-wrap: wrap; /* Permite quebrar a linha em telas menores */
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; /* Ajuste a margem para espaços menores */
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 140px; /* Largura fixa para os passos */
    flex-shrink: 0;
    opacity: 0; /* Inicialmente invisível para a animação */
    transform: translateY(20px); /* Deslocamento inicial para a animação */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    background-color:#F58220; /* Cor azul para os ícones */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-step p {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    text-align: center;
}

/* Estilo das linhas horizontais */
.horizontal-line {
    background-color: #F58220; /* Linhas em azul para destaque */
    height: 4px; /* Espessura da linha */
    width: 0; /* Começa com largura zero para a animação */
    margin: 0 5px; /* Margem entre os elementos */
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.5s ease-in-out;
}

.horizontal-line.animate {
    animation: drawHorizontalLine 1s forwards ease-out;
    opacity: 1;
}

/* Animação para a linha horizontal */
@keyframes drawHorizontalLine {
    from { width: 0; }
    to { width: 80px; } /* Comprimento da linha entre os passos */
}

.devolucao{
    margin-top: 180px;
}
/* Seção de Informações e Botão */
#devolucao-info {
    margin-top: 380px;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#devolucao-info h2 {
    font-size: 2.8em;
    color: #F58220; /* Cor azul para o título */
    margin-bottom: 30px;
    font-weight: 800;
}

#devolucao-info p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 0 20px;
}

.devolucao-button {
    display: inline-block;
    background-color: #28a745; /* Cor verde */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.devolucao-button:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

/* Seção do Processo de Devolução (reutiliza estilos do processo de entrega) */
#processo-devolucao {
    text-align: center;
    padding: 60px 20px;
    background-color: #f0f5fa; /* Fundo diferente para a seção de processo */
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

#processo-devolucao h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.timeline-container-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 160px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    background-color: #007bff; /* Cor azul para os ícones */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-step p {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    text-align: center;
}

.horizontal-line {
    background-color: #007bff; /* Linhas em azul para destaque */
    height: 4px;
    width: 0;
    margin: 0 5px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.horizontal-line.animate {
    animation: drawHorizontalLine 1s forwards ease-out;
    opacity: 1;
}

@keyframes drawHorizontalLine {
    from { width: 0; }
    to { width: 80px; }
}

/* Estilo individual de cada cartão de pagamento */
.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
    width: 280px; /* Largura um pouco maior para cada cartão */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave ao hover */
  margin-bottom: 50px;
    /* Animação de entrada */
    opacity: 0;
    transform: translateY(40px);
}

.payment-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.payment-card:hover {
    transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada ao hover */
}

/* Círculo do ícone */
.icon-payment-circle {
    background-color: #F58220; /* Cor azul primária */
    color: white;
    border-radius: 50%;
    width: 80px; /* Tamanho maior para o círculo */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em; /* Tamanho maior para o ícone */
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.payment-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.payment-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}


/* entregas.css */
.entregas{
    margin-top: 130px;
}
#processo-entrega {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    margin-top: px;
    margin-bottom: 50px;
}

#processo-entrega h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.timeline-container-horizontal { /* Novo contêiner para layout horizontal */
    display: flex;
   
    flex-wrap: wrap; /* Permite quebrar a linha em telas menores */
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; /* Ajuste a margem para espaços menores */
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 140px; /* Largura fixa para os passos */
    flex-shrink: 0;
    opacity: 0; /* Inicialmente invisível para a animação */
    transform: translateY(20px); /* Deslocamento inicial para a animação */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    background-color:#F58220; /* Cor azul para os ícones */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timeline-step p {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    text-align: center;
}

/* Estilo das linhas horizontais */
.horizontal-line {
    background-color: #F58220; /* Linhas em azul para destaque */
    height: 4px; /* Espessura da linha */
    width: 0; /* Começa com largura zero para a animação */
    margin: 0 5px; /* Margem entre os elementos */
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.5s ease-in-out;
}

.horizontal-line.animate {
    animation: drawHorizontalLine 1s forwards ease-out;
    opacity: 1;
}
/* Responsividade */
@media (max-width: 768px) {
    .payment-methods-container {
        flex-direction: column;
        align-items: center;
    }

    .payment-card {
        width: 90%; /* Ocupa mais largura em telas menores */
        margin-bottom: 20px; /* Espaçamento entre os cartões na coluna */
    }

    #formas-pagamento h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .icon-payment-circle {
        width: 70px;
        height: 70px;
        font-size: 2.5em;
    }

    .payment-card h3 {
        font-size: 1.5em;
    }

    .payment-card p {
        font-size: 1em;
    }
}
@media(max-width:390px){

    
    html, body {
      overflow-x: hidden;
    }
    
    .timeline-container-horizontal {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items when stacked */
    }

    .timeline-step {
        width: 80%; /* Make steps take up more width on mobile */
        max-width: 300px; /* Limit max width for better readability */
        margin: 15px 0; /* Adjust vertical margin */
    }

    .horizontal-line { /* Re-purpose this class for vertical lines on mobile */
        width: 4px; /* Make it a thin vertical line */
        height: 0; /* Starts with zero height for vertical animation */
        margin: 5px 0; /* Adjust margin for vertical spacing */
    }

    .horizontal-line.animate {
        animation: drawVerticalLine 1s forwards ease-out; /* Apply vertical animation */
        opacity: 1;
    }

    @keyframes drawVerticalLine {
        to {
            height: 50px; /* Adjust this value as needed for your desired line length */
        }
    }
    #devolucao-info {
        margin-top: 380px;
        text-align: center;
        padding: 80px 20px;
        max-width: 370px;
        margin: 40px auto;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .wht{
        margin-left: -270px;
    }

    #devolucao-info h2 {
       
        font-size: 1.8em;
        color: #F58220; /* Cor azul para o título */
        margin-bottom: 30px;
        font-weight: 800;
    }
}