@font-face {
    font-family: rubrik-font;
    src: url(../font/rubrik-font.otf);
}

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

body {
    background: #f9f7f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px 56px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ── SVG background (faixas fluidas) ── */
.bg-waves {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.bg-waves svg {
    width: 100%;
    height: 100%;
}

/* ── Page wrapper (acima do bg) ── */
.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── Header: imagens empilhadas ── */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ted-image {
    width: 155px;
    height: auto;
    filter:
        drop-shadow(2px  0   0 #fff)
        drop-shadow(-2px 0   0 #fff)
        drop-shadow(0    2px 0 #fff)
        drop-shadow(0   -2px 0 #fff)
        drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

.brand-image {
    width: 200px;
    height: auto;
    display: block;
    margin: 4px auto 6px;
}

/* ── Links card ── */
.links-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(60, 57, 53, .15),
        0 2px 8px  rgba(0, 0, 0, .07);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Buttons ── */
.btn-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    background: #ffffff;
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .17s, box-shadow .17s, background .17s;
    text-decoration: none;
    color: #3c3935;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    user-select: none;
}

.btn-link:hover {
    border-color: #ea0029;
    box-shadow: 0 4px 18px rgba(234, 0, 41, .16);
    background: #fff8f8;
}

.btn-link:active {
    background: #ffeeee;
    box-shadow: none;
}

/* ── Icon circles ── */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.icon-circle.localizacao { background: #ea0029; }
.icon-circle.whatsapp    { background: #25D366; }
.icon-circle.instagram   {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%, #fdf497 5%,
        #fd5949 45%, #d6249f 60%, #285AEB 90%
    );
}
.icon-circle.facebook    { background: #1877F2; }
.icon-circle.ligacao     { background: #ea0029; }

/* ── Label & arrow ── */
.btn-label {
    font-family: rubrik-font;
    font-size: 1.05rem;
    letter-spacing: .3px;
    flex: 1;
    color: #3c3935;
}

.btn-arrow {
    color: #ea0029;
    font-size: 11px;
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .17s, transform .17s;
}

.btn-link:hover .btn-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ── Mobile ── */
@media (max-width: 440px) {
    body         { padding-top: 28px; }
    .ted-image   { width: 128px; }
    .brand-image { width: 140px; }
}
