/* ============================================
   Ana Carolina Bosso — Link Page com funil
   Bodoni Moda + Inter · identidade marrom/nude
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #3d2b24;
    --bg-darker: #2f211b;
    --bg-card: linear-gradient(135deg, #c9b8a8 0%, #b8a494 50%, #a89282 100%);
    --card-fade: #a89282;
    --text-dark: #2a1f1a;
    --text-light: #d4c4b5;
    --text-muted: rgba(212, 196, 181, 0.7);
    --accent: #8b7355;
    --accent-soft: #cfaa81;
    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --r-card: 18px;
    --r-pill: 999px;
}

html {
    scroll-behavior: smooth;
}

[hidden] {
    display: none !important;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    min-height: 100vh;
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
}

body.travado {
    overflow: hidden;
}

/* ============ LAYOUT ============ */

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: start;
}

.content-side {
    padding: 60px 50px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 620px;
    margin-left: auto;
}

/* ============ HEADER ============ */

.header {
    text-align: center;
}

.name {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--text-light);
}

.name span {
    font-style: normal;
    font-weight: 500;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

.social-icons a {
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

/* ============ CONCIERGE ============ */

.concierge {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 22px;
    text-align: left;
    font-family: var(--font-body);
    color: var(--text-light);
    background: linear-gradient(135deg, #2b1e18 0%, #1f1611 100%);
    border: 1px solid rgba(207, 170, 129, 0.35);
    border-radius: var(--r-card);
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.concierge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 50%, rgba(207, 170, 129, 0.18), transparent 60%);
    pointer-events: none;
}

.concierge:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 170, 129, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.concierge-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(207, 170, 129, 0.16);
    color: var(--accent-soft);
}

.concierge-icon svg {
    width: 22px;
    height: 22px;
}

.concierge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.concierge-text strong {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #f0e5da;
}

.concierge-text span {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.concierge-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 196, 181, 0.3);
    color: var(--text-light);
    transition: transform 0.3s ease, background 0.3s ease;
}

.concierge:hover .concierge-arrow {
    transform: translateX(4px);
    background: rgba(207, 170, 129, 0.15);
}

.concierge-arrow svg {
    width: 18px;
    height: 18px;
}

/* Retomada da recomendação anterior */

.retomar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: -22px;
    padding: 14px 20px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
    background: rgba(139, 115, 85, 0.14);
    border-radius: var(--r-pill);
}

.retomar b {
    color: var(--text-light);
    font-weight: 500;
}

.retomar button {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--accent-soft);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
}

/* ============ TRILHAS ============ */

.trilha {
    display: flex;
    flex-direction: column;
}

.trilha-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--text-light);
    text-align: left;
}

.trilha-title em {
    font-style: italic;
    color: var(--accent-soft);
}

.trilha-sub {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: left;
}

.trilha .links,
.trilha .links-simple {
    margin-top: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ============ CARDS DE PRODUTO ============ */

.link-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: var(--r-card);
    text-decoration: none;
    overflow: hidden;
    min-height: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card-image {
    width: 180px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

/* foto vertical, já enquadrada nos dois rostos — ancorar no topo */
.card-image-lampadina img {
    object-position: center top;
}

.card-image-setup img {
    object-position: center 22%;
}

.link-card:hover .card-image img {
    transform: scale(1.08);
}

.image-fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(168, 146, 130, 0.4) 40%,
            rgba(168, 146, 130, 0.7) 70%,
            var(--card-fade) 100%);
    pointer-events: none;
}

.card-content {
    flex: 1;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    min-height: 55px;
}

.card-logo {
    max-height: 70px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.link-card:hover .card-logo {
    transform: scale(1.03);
}

/* Lockup de texto para produtos sem logotipo próprio (Setup) */
.card-wordmark {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
}

.card-wordmark b {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    text-transform: uppercase;
    opacity: 0.85;
}

.card-wordmark>span {
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 400;
    white-space: nowrap;
}

.card-wordmark i {
    font-style: italic;
}

.link-card:hover .card-wordmark {
    transform: scale(1.03);
}

.card-content p {
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(42, 31, 26, 0.75);
}

.card-content em {
    font-style: normal;
    background: linear-gradient(to bottom, transparent 55%, rgba(139, 115, 85, 0.35) 55%);
    padding: 0 2px;
}

.card-tag {
    align-self: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(42, 31, 26, 0.62);
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--r-pill);
    padding: 5px 12px;
}

/* ============ LINKS SIMPLES ============ */

.links-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-simple {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-light);
    background: rgba(212, 196, 181, 0.08);
    border: 1px solid rgba(212, 196, 181, 0.14);
    border-radius: var(--r-pill);
    transition: all 0.3s ease;
}

.link-simple:hover {
    background: rgba(212, 196, 181, 0.14);
    border-color: rgba(207, 170, 129, 0.5);
    transform: translateY(-2px);
}

.link-simple-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(207, 170, 129, 0.16);
    color: var(--accent-soft);
}

.link-simple-icon svg {
    width: 18px;
    height: 18px;
}

.link-simple-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.link-simple-text strong {
    font-size: 0.86rem;
    font-weight: 500;
}

.link-simple-text span {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.link-simple-arrow {
    color: var(--text-muted);
    font-size: 1rem;
}

.assinatura {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212, 196, 181, 0.4);
}

/* ============ FOTO ============ */

.photo-side {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.photo-gradient {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(to right,
            var(--bg-dark) 0%,
            rgba(61, 43, 36, 0.95) 20%,
            rgba(61, 43, 36, 0.7) 40%,
            rgba(61, 43, 36, 0.3) 70%,
            transparent 100%);
    pointer-events: none;
}

/* ============ QUIZ ============ */

.quiz {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(28, 19, 15, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    overflow-y: auto;
    animation: quizFade 0.35s ease;
}

.quiz[hidden] {
    display: none;
}

@keyframes quizFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.quiz-inner {
    width: 100%;
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.quiz-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.quiz-progresso {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-passo {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.quiz-barra {
    height: 3px;
    border-radius: var(--r-pill);
    background: rgba(212, 196, 181, 0.15);
    overflow: hidden;
}

.quiz-barra span {
    display: block;
    height: 100%;
    width: 33%;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quiz-fechar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(212, 196, 181, 0.1);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.3s ease;
}

.quiz-fechar:hover {
    background: rgba(212, 196, 181, 0.2);
}

.quiz-fechar svg {
    width: 18px;
    height: 18px;
}

.quiz-etapa {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: quizUp 0.4s ease;
}

.quiz-etapa[hidden] {
    display: none;
}

@keyframes quizUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-titulo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.5vw, 1.95rem);
    font-weight: 400;
    line-height: 1.25;
    color: #f0e5da;
}

.quiz-titulo em {
    font-style: italic;
    color: var(--accent-soft);
}

.quiz-ajuda {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: -8px;
}

.quiz-opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-opcao {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-body);
    color: var(--text-light);
    background: rgba(212, 196, 181, 0.07);
    border: 1px solid rgba(212, 196, 181, 0.16);
    border-radius: var(--r-card);
    cursor: pointer;
    transition: all 0.25s ease;
}

.quiz-opcao:hover,
.quiz-opcao:focus-visible {
    background: rgba(207, 170, 129, 0.16);
    border-color: rgba(207, 170, 129, 0.6);
    transform: translateX(4px);
    outline: none;
}

.quiz-opcao-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quiz-opcao-texto strong {
    font-size: 0.92rem;
    font-weight: 500;
}

.quiz-opcao-texto span {
    font-size: 0.76rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.quiz-opcao::after {
    content: '→';
    color: rgba(212, 196, 181, 0.45);
    font-size: 0.95rem;
}

.quiz-voltar,
.quiz-link {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.quiz-voltar:hover,
.quiz-link:hover {
    color: var(--accent-soft);
}

/* ============ RESULTADO ============ */

.quiz-selo {
    align-self: center;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
    border: 1px solid rgba(207, 170, 129, 0.4);
    border-radius: var(--r-pill);
    padding: 6px 16px;
}

.resultado-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 32px 26px;
    background: var(--bg-card);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.resultado-logo img {
    max-height: 62px;
    max-width: 210px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.resultado-nome {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
}

.resultado-logo .card-wordmark {
    align-items: center;
    color: var(--text-dark);
    text-shadow: none;
}

.resultado-logo .card-wordmark>span {
    font-size: 1.7rem;
}

.resultado-logo:not(:empty)+.resultado-nome {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.resultado-motivo {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(42, 31, 26, 0.8);
    max-width: 38ch;
}

.resultado-motivo b {
    font-weight: 500;
    color: var(--text-dark);
    background: linear-gradient(to bottom, transparent 58%, rgba(139, 115, 85, 0.35) 58%);
}

.resultado-preco {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(42, 31, 26, 0.6);
    background: rgba(255, 255, 255, 0.45);
    border-radius: var(--r-pill);
    padding: 6px 16px;
}

.btn-principal {
    display: inline-block;
    width: 100%;
    margin-top: 6px;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #f5ece3;
    background: var(--text-dark);
    border-radius: var(--r-pill);
    transition: all 0.3s ease;
}

.btn-principal:hover {
    background: #1a120e;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.resultado-depois {
    font-size: 0.72rem;
    line-height: 1.6;
    color: rgba(42, 31, 26, 0.6);
    max-width: 34ch;
}

.resultado-convite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.resultado-convite p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid rgba(212, 196, 181, 0.35);
    border-radius: var(--r-pill);
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    border-color: var(--accent-soft);
    color: var(--accent-soft);
}

.resultado-extras {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.resultado-extras .quiz-link {
    align-self: center;
}

/* ============ RESPONSIVO ============ */

@media (max-width: 1100px) {
    .content-side {
        padding: 50px 40px 70px;
        max-width: 100%;
    }

    .card-image {
        width: 150px;
        min-width: 150px;
    }

    .card-logo {
        max-height: 55px;
        max-width: 180px;
    }

    .image-fade {
        width: 30px;
    }
}

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .photo-side {
        order: -1;
        position: relative;
        height: 42vh;
        min-height: 300px;
    }

    .hero-photo {
        object-position: center top;
    }

    .photo-gradient {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top,
                var(--bg-dark) 0%,
                rgba(61, 43, 36, 0.8) 40%,
                transparent 100%);
    }

    .content-side {
        padding: 30px 30px 60px;
        justify-content: flex-start;
        gap: 34px;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .card-content p {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .photo-side {
        height: 36vh;
        min-height: 250px;
    }

    .content-side {
        padding: 22px 16px 56px;
        gap: 28px;
    }

    .name {
        font-size: 1.9rem;
    }

    .subtitle {
        margin-top: 8px;
        font-size: 0.75rem;
    }

    .social-icons {
        margin-top: 14px;
    }

    .concierge {
        padding: 18px 16px;
        gap: 12px;
    }

    .concierge-icon {
        width: 40px;
        height: 40px;
    }

    .concierge-text strong {
        font-size: 1.05rem;
    }

    .concierge-text span {
        font-size: 0.75rem;
    }

    .concierge-arrow {
        width: 32px;
        height: 32px;
    }

    .retomar {
        margin-top: -16px;
        padding: 12px 16px;
        border-radius: 20px;
    }

    .links {
        gap: 14px;
    }

    .link-card {
        flex-direction: row;
        min-height: 118px;
    }

    .card-image {
        width: 100px;
        min-width: 100px;
        height: auto;
    }

    .card-image img {
        object-position: center center;
    }

    .card-image-lampadina img {
        object-position: center top;
    }

    .image-fade {
        width: 25px;
        background: linear-gradient(to right,
                transparent 0%,
                rgba(168, 146, 130, 0.5) 50%,
                var(--card-fade) 100%);
    }

    .card-content {
        text-align: left;
        padding: 14px 16px;
        gap: 8px;
    }

    .card-content p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .card-tag {
        font-size: 0.62rem;
        padding: 4px 10px;
    }

    .card-logo {
        max-height: 40px;
        max-width: 140px;
    }

    .card-wordmark {
        gap: 2px;
    }

    .card-wordmark b {
        font-size: 0.52rem;
        letter-spacing: 0.36em;
        text-indent: 0.36em;
    }

    .card-wordmark>span {
        font-size: 1.02rem;
    }

    .logo-wrapper {
        min-height: 35px;
        justify-content: flex-start;
    }

    .trilha-title {
        font-size: 1.2rem;
    }

    .quiz {
        padding: 18px 14px 28px;
        align-items: flex-start;
    }

    .quiz-inner {
        gap: 22px;
    }

    .quiz-opcao {
        padding: 15px 16px;
    }

    .resultado-card {
        padding: 26px 18px;
        border-radius: 24px;
    }
}

/* ============ ANIMAÇÕES ============ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeUp 0.7s ease-out;
}

.concierge {
    animation: fadeUp 0.7s ease-out 0.15s backwards;
}

.trilha {
    animation: fadeUp 0.6s ease-out 0.3s backwards;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ WHATSAPP FLUTUANTE ============ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
