* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(237, 35, 34, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(237, 35, 34, 0.10), transparent 25%),
        linear-gradient(135deg, #111111 0%, #050505 45%, #151515 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.page {
    width: 100%;
    max-width: 1040px;
}

.card {
    width: 100%;
    background: rgba(8, 8, 8, 0.94);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(179, 0, 27, 0.25);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.top-line {
    display: none;
}

.content {
    text-align: center;
}

/* HEADER */
.hero-top {
    background: #ffffff;
    padding: 28px 20px 24px;
    text-align: center;
}

/* LOGO CARD */
.logo-card {
    width: fit-content;
    margin: 0 auto 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 26px;
}

/* LOGO */
.logo {
    width: 180px;
    max-width: 100%;
    display: block;
}

/* SUBTITLE */
.hero-subtitle {
    color: #b3001b;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
}

/* MAIN CONTENT */
.main-content {
    padding: 36px 42px 30px;
}

h1 {
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

h1 span {
    color: #ED2322;
    font-weight: 800;
}

/* RED LINE */
.small-red-line {
    width: 60px;
    height: 3px;
    background: #ED2322;
    margin: 0 auto 22px;
    border-radius: 999px;
}

/* INTRO */
.intro {
    max-width: 760px;
    margin: 0 auto 24px;
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.7;
}

/* BUTTONS */
.actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #ED2322;
    color: #ffffff;
    border: 1px solid #ED2322;
}

.btn-primary:hover {
    background: #c91c1b;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* BRANCHES */
.branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: left;
}

.branch {
    background: rgba(255, 255, 255, 0.035);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.25s ease;
}

.branch h3 {
    color: #ED2322;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 800;
}

.branch p {
    color: #d5d5d5;
    line-height: 1.6;
    font-size: 13px;
}

/* HOVER DANCE */
.branch:hover {
    background: #ffffff;
    border-color: #ED2322;
    transform: translateY(-6px) rotate(-1deg);
    animation: branchDance 0.45s ease-in-out;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.branch:hover h3 {
    color: #ED2322;
}

.branch:hover p {
    color: #111111;
}

@keyframes branchDance {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-1deg);
    }

    50% {
        transform: translateY(-3px) rotate(1deg);
    }

    75% {
        transform: translateY(-6px) rotate(-0.5deg);
    }

    100% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* FOOTER */
.footer {
    margin-top: 22px;
    color: #9a9a9a;
    font-size: 13px;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    transition: 0.25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.floating-whatsapp-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* MOBILE */
@media (max-width: 900px) {

    body {
        min-height: 100vh;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        background:
            radial-gradient(circle at top left, rgba(237, 35, 34, 0.12), transparent 30%),
            radial-gradient(circle at bottom right, rgba(237, 35, 34, 0.10), transparent 25%),
            linear-gradient(135deg, #111111 0%, #050505 45%, #151515 100%);
    }

    .page {
        width: 100%;
        max-width: 100%;
    }

    .card {
        min-height: 100vh;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: rgba(8, 8, 8, 0.96);
    }

    .hero-top {
        padding: 28px 18px 22px;
        border-radius: 0 0 26px 26px;
    }

    .logo-card {
        padding: 10px 18px;
        margin-bottom: 10px;
        border-radius: 14px;
    }

    .logo {
        width: 145px;
    }

    .hero-subtitle {
        font-size: 8px;
        letter-spacing: 2.5px;
        line-height: 1.6;
    }

    .main-content {
        padding: 30px 18px 90px;
    }

    h1 {
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    h1 span {
        display: block;
        margin-top: 4px;
    }

    .small-red-line {
        margin-bottom: 20px;
    }

    .intro {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        font-size: 14px;
    }

    .branches {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .branch {
        padding: 18px;
        border-radius: 18px;
    }

    .branch h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .branch p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .footer {
        margin-top: 24px;
        padding-bottom: 10px;
        font-size: 12px;
        line-height: 1.5;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .floating-whatsapp-icon {
        width: 46px;
        height: 46px;
    }
}