:root {
    --sun-yellow: #ffd447;
    --ocean-blue: #1085c5;
    --leaf-green: #2f9f4f;
    --coral: #ff6f5e;
    --sand: #fff4d9;
    --ink: #183042;
    --card: rgba(255, 255, 255, 0.9);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: 'Fredoka', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 212, 71, 0.6), transparent 33%),
        radial-gradient(circle at 92% 8%, rgba(16, 133, 197, 0.25), transparent 28%),
        radial-gradient(circle at 86% 88%, rgba(255, 111, 94, 0.22), transparent 32%),
        linear-gradient(140deg, #fef9e9 0%, #eff8ff 46%, #f3fff0 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(6px);
    animation: drift 9s ease-in-out infinite;
}

body::before {
    background: rgba(255, 111, 94, 0.16);
    top: -60px;
    left: -60px;
}

body::after {
    background: rgba(16, 133, 197, 0.14);
    bottom: -90px;
    right: -70px;
    animation-delay: 2s;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(135deg, var(--leaf-green), #2a8b45);
    border-radius: 999px;
    padding: 11px 22px;
    box-shadow: 0 8px 18px rgba(47, 159, 79, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 22px rgba(47, 159, 79, 0.32);
}

.workshop-page {
    width: min(1100px, calc(100% - 32px));
    margin: 95px auto 36px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 20px;
}

.hero-card,
.schedule-card {
    background: var(--card);
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(24, 48, 66, 0.1);
    backdrop-filter: blur(3px);
    animation: popIn 0.65s ease forwards;
}

.schedule-card {
    animation-delay: 0.12s;
}

.badge {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--sun-yellow);
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-card h1 {
    margin: 0;
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
    color: var(--ocean-blue);
}

.hero-copy {
    margin: 14px 0 20px;
    font-size: 1.05rem;
    line-height: 1.65;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.info-pill {
    background: #ffffff;
    border: 1px dashed rgba(24, 48, 66, 0.18);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform 0.2s ease;
}

.info-pill:hover {
    transform: translateY(-2px);
}

.info-pill .label {
    font-size: 0.88rem;
    opacity: 0.82;
}

.info-pill strong {
    font-size: 1rem;
    color: #153a53;
}

.price-pill {
    background: linear-gradient(135deg, #fff8db, #ffeeb5);
    border-color: rgba(255, 212, 71, 0.45);
}

.schedule-card h2 {
    margin: 0 0 16px;
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--coral);
}

.table-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(16, 133, 197, 0.18);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(100deg, #1085c5, #1e9fda);
    color: #fff;
}

th,
td {
    text-align: left;
    padding: 13px 12px;
}

tbody tr {
    border-bottom: 1px solid rgba(21, 58, 83, 0.08);
}

tbody tr:nth-child(even) {
    background: #f6fbff;
}

.note {
    margin: 16px 0 0;
    padding: 10px 13px;
    border-left: 5px solid var(--leaf-green);
    background: #f1fff5;
    border-radius: 10px;
    line-height: 1.55;
}

.join-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #23c45e, #1a9e4a);
    color: #fff;
    text-decoration: none;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 18px rgba(26, 158, 74, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 22px rgba(26, 158, 74, 0.3);
}

.join-whatsapp:active {
    transform: translateY(0);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -16px, 0);
    }
}

@media (max-width: 900px) {
    .workshop-page {
        grid-template-columns: 1fr;
        margin-top: 88px;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    th,
    td {
        padding: 11px 9px;
        font-size: 0.95rem;
    }
}
