:root {
    --orange: #f4610b;
    --blue: #2036c5;
    --green: #39a429;
    --white: #fff;
    --shadow: 0 5px 12px rgba(84, 28, 0, .26);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
    min-height: 100vh;
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a, button { -webkit-tap-highlight-color: transparent; }

.page-shell {
    width: min(100%, 520px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 18px 18px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    display: block;
    width: min(280px, 64vw);
    height: auto;
    margin: 32px auto 48px;
}

.actions {
    width: min(100%, 390px);
    display: grid;
    gap: 12px;
}

.action-button {
    width: 100%;
    min-height: 66px;
    border-radius: 11px;
    padding: 10px 18px;
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -.2px;
    box-shadow: var(--shadow);
}

.action-blue {
    background: linear-gradient(180deg, #2943d5 0%, #2035bd 100%);
}

.actions .action-blue:nth-child(2) {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
}

.action-whatsapp {
    min-height: 66px;
    background: var(--green);
    grid-template-columns: 48px 1fr 24px;
}

.button-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.button-icon svg,
.button-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.user-icon svg { fill: #fff; }
.play-icon img { width: 37px; height: 38px; border-radius: 7px; }
.whatsapp-icon img { width: 42px; height: 42px; border-radius: 4px; }

.button-label {
    text-align: center;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 700;
}

.actions .action-button:nth-child(2) .button-label {
    font-size: 17px;
}

.two-lines {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.two-lines strong,
.two-lines small { font-size: 18px; line-height: 1.02; font-weight: 700; }
.button-arrow { font-size: 24px; line-height: 1; text-align: right; font-weight: 600; }

.banner-section {
    width: min(100%, 450px);
    margin-top: 24px;
}

.banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.floating-whatsapp {
    position: fixed;
    z-index: 30;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 10px));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px 8px 8px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0,0,0,.28);
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
}
.floating-icon img { width: 40px; height: 40px; display: block; border-radius: 50%; object-fit: cover; }

@media (max-width: 520px) {
    .page-shell { padding: 10px 16px 78px; }
    .brand-logo {
        width: min(235px, 59vw);
        margin: 24px auto 34px;
    }
    .actions { width: 100%; gap: 10px; }
    .action-button {
        min-height: 58px;
        border-radius: 9px;
        grid-template-columns: 42px 1fr 20px;
        padding: 8px 15px;
    }
    .action-whatsapp { min-height: 58px; grid-template-columns: 42px 1fr 20px; padding-left: 10px; padding-right: 10px; }
    .button-icon { width: 36px; height: 36px; }
    .play-icon img { width: 32px; height: 33px; }
    .whatsapp-icon img { width: 38px; height: 38px; }
    .button-label { font-size: 16px; }
    .actions .action-button:nth-child(2) .button-label { font-size: 15px; }
    .two-lines strong, .two-lines small { font-size: 16px; }
    .button-arrow { font-size: 21px; }
    .banner-section { margin-top: 20px; width: 100%; }
}

@media (max-width: 520px) and (max-height: 780px) {
    .brand-logo { width: min(205px, 54vw); margin: 14px auto 24px; }
    .actions { gap: 8px; }
    .action-button { min-height: 52px; padding: 6px 13px; }
    .action-whatsapp { min-height: 52px; padding-left: 8px; padding-right: 8px; }
    .button-icon { width: 32px; height: 32px; }
    .whatsapp-icon img { width: 34px; height: 34px; }
    .button-label { font-size: 15px; }
    .actions .action-button:nth-child(2) .button-label { font-size: 14px; }
    .two-lines strong, .two-lines small { font-size: 15px; }
    .banner-section { margin-top: 14px; }
}
