/*
Theme Name: Hello Elementor Child
Theme URI: https://seusite.com
Description: Tema filho do Hello Elementor
Author: Seu Nome
Author URI: https://seusite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/



/* Shape divider lateral com corte diagonal */
.left-diagonal {
    position: relative;
    z-index: 2; /* para ficar acima do container da direita */
}

.left-diagonal::after {
    content: "";
    position: absolute;
    right: -50px; /* controla a invasão sobre o container da direita */
    top: 0;
    width: 100px; /* largura do shape */
    height: 100%;
    background: inherit; /* mantém o mesmo fundo do container */
    transform: skewX(-12deg); /* ângulo da diagonal */
    z-index: 3;
}


/* Container do botão */
.linkBtn {
    text-align: center; /* opcional, só pra centralizar */
}

/* Estilo do link como botão */
.linkBtn .elementor-heading-title a {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;         /* deixa “pílula” */
    background: transparent;          /* cor do botão (ajusta pra tua brand) */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    overflow: visible;
}

/* Efeito de pulse em volta do botão */
.linkBtn .elementor-heading-title a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 75, 43, 0.7); /* mesma cor do botão, mais clara */
    animation: pulseWave 2s infinite ease-out;
    pointer-events: none;
}

/* Animação do pulse */
@keyframes pulseWave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}


/* Transição suave */
.linkBtn .elementor-heading-title a {
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Grow suave no hover */
.linkBtn .elementor-heading-title a:hover {
    transform: scale(1.05);
}

.linkProdMenu a:hover {
    text-decoration: underline;
}

#produtos {
    margin-top: -80px; /* ajuste conforme desejado */
    position: relative;
    z-index: 1;
}

.elementor-element-4dc3524 {
    position: relative;
    z-index: 20;
}

.btn-wpp {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;

    /* 🔥 Gradiente animado lateral */
    background: linear-gradient(90deg, #25D366, #075E54, #25D366);
    background-size: 300% 300%;
    animation: moveGradient 6s ease infinite, pulseSoft 1s infinite ease-in-out;

    padding: 14px 20px;
    border-radius: 42px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    width: auto;

    transform-origin: center;
    transition: transform 0.2s ease;
}

/* 🔥 Animação do gradiente */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sink no hover (afunda) */
.btn-wpp:hover {
    transform: translateY(3px) scale(0.98);
}

.btn-wpp img {
    width: 44px;
    height: 44px;
}

.btn-wpp .texto-btn {
    line-height: 150%;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
}

.btn-wpp .texto-btn b {
    font-size: 20px;
    display: block;
    line-height: 150%;
}

/* Pulse suave e discreto */
@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .btn-wpp {
        padding: 20px 14px;
        gap: 12px;
    }
    .btn-wpp img {
        width: 38px;
        height: 38px;
    }
    .btn-wpp .texto-btn b {
        font-size: 18px;
    }
    .btn-wpp .texto-btn {
        font-size: 15px;
    }
}
