@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Fredoka:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    background: #f7fcff;
    overflow-x: hidden;
    color: #102b5c;
}

.kids-home {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, #dff5ff 0, transparent 30%),
        linear-gradient(180deg, #dff6ff 0%, #ffffff 45%);
    overflow: hidden;
}

.header {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 25px auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 130px;
    filter: drop-shadow(0 8px 15px #0002);
}

.header nav {
    background: #fff;
    padding: 12px 28px;
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 40px #008cff22;
}

.header nav a {
    width: 95px;
    height: 58px;
    color: #102b5c;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 25px;
    transition: .3s;
}

.header nav a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.header nav a:hover {
    background: #f2f9ff;
    transform: translateY(-4px);
    color: #007bff;
}

.apoio {
    background: linear-gradient(135deg, #ffdc38, #f0c60c);
    padding: 18px 35px;
    color: #cc1515;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px #ff4fa355;
}

.idabmusic {
    width: 210px;
    filter: drop-shadow(0 8px 15px #0002);
    padding: 18px 35px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
}

.hero {
    position: relative;
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 40px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 180px;
    background: #ffdc38;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.hero-text,
.hero-img {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Baloo 2';
    font-size: 70px;
    line-height: .95;
    margin: 0;
    color: #073b88;
}

.hero h1 span {
    display: block;
    color: #5c2fa0;
}

.hero p {
    max-width: 500px;
    margin: 30px 0;
    font-size: 22px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    gap: 18px;
}

.buttons a {
    padding: 17px 30px;
    border-radius: 35px;
    background: #006cff;
    color: white;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 25px #006cff44;
}

.buttons a:nth-child(2) {
    background: #ffd93d;
    color: #5d4300;
}

.hero-img img {
    width: 100%;
    animation: floatKids 5s ease-in-out infinite;
}

.quick {
    position: relative;
    z-index: 5;
    max-width: 1300px;
    margin: -30px auto 70px;
    padding: 25px;
    background: white;
    border-radius: 35px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    box-shadow: 0 20px 50px #0001;
}

.quick-item {
    position: relative;
}

.quick-card {
    position: relative;
    height: 100%;
    min-height: 210px;
    padding: 25px 15px;
    border-radius: 28px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.quick-card:hover {
    background: #f1faff;
    transform: translateY(-8px);
}

.quick-card img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    transition: .3s;
}

.quick-card:hover img {
    transform: scale(1.1) rotate(-3deg);
}

.quick-card h3 {
    font-family: 'Baloo 2';
    color: #006cff;
    font-size: 24px;
    margin: 12px 0 5px;
}

.quick-card p {
    color: #445;
    font-size: 15px;
    margin: 0;
}

.quick-card small {
    margin-top: 12px;
    padding: 6px 15px;
    background: #fff2c7;
    color: #a26d00;
    border-radius: 20px;
    font-weight: 700;
}

.games-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    width: 330px;
    padding: 18px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 100, 255, .25);
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s;
    z-index: 50;
}

.quick-item:hover .games-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.games-dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 22px;
    height: 22px;
    background: white;
    transform: translateX(-50%) rotate(45deg);
}

.games-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 18px;
    text-decoration: none;
    transition: .25s;
}

.games-dropdown a:hover {
    background: #eef8ff;
    transform: translateX(6px);
}

.games-dropdown img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.games-dropdown strong {
    display: block;
    font-family: 'Baloo 2';
    color: #006cff;
    font-size: 18px;
}

.games-dropdown small {
    color: #666;
    font-size: 13px;
}

.about {
    max-width: 1300px;
    margin: auto;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2,
.videos-home h2,
.donate h2 {
    font-family: 'Baloo 2';
    font-size: 45px;
    color: #073b88;
}

.about p {
    font-size: 20px;
    line-height: 1.6;
}

.about li {
    list-style: none;
    margin: 18px 0;
    font-size: 20px;
}

.about a,
.videos-home a,
.donate a {
    display: inline-block;
    background: #006cff;
    color: white;
    padding: 16px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
}

.about-img img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px #0002;
}

.videos-home {
    max-width: 1300px;
    margin: 50px auto;
    padding: 40px;
    background: #e9f8ff;
    border-radius: 40px;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 40px;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-list img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 25px #0002;
}

.donate {
    margin: 70px auto 0;
    max-width: 1300px;
    padding: 35px 60px;
    display: grid;
    grid-template-columns: 180px 1fr 160px;
    align-items: center;
    gap: 40px;
    background:
        linear-gradient(120deg, #c8ecff, #ffd7ef);
    border-radius: 45px 45px 0 0;
}

.donate img {
    max-width: 170px;
}

.quick-item {
    position: relative;
}

.quick-card small {
    color: #5c2fa0;
    font-weight: 800;
}


.donate {
    position: relative;
    margin: 70px auto 0;
    max-width: 1300px;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 40px;
    background: linear-gradient(120deg, #c8ecff, #ffd7ef);
    border-radius: 45px;
}

.donate-kid {
    width: 210px;
    animation: floatKids 5s ease-in-out infinite;
}

.donate-info h2 {
    margin: 0;
}

.donate-info p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.5;
}

.pix-box {
    margin-top: 25px;
    background: white;
    padding: 18px;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 15px 30px #0001;
}

.pix-box span {
    display: block;
    color: #006cff;
    font-weight: 800;
    margin-bottom: 5px;
}

.pix-box strong {
    display: block;
    color: #102b5c;
    font-size: 22px;
}

.pix-box button {
    margin-top: 15px;
    border: 0;
    background: #006cff;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 800;
    cursor: pointer;
}

.pix-qrcode {
    background: white;
    padding: 18px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px #0002;
}

.pix-qrcode img {
    width: 160px;
}

.pix-qrcode small {
    display: block;
    margin-top: 10px;
    color: #555;
    font-weight: 700;
}

@media(max-width:900px) {
    .donate {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .donate-kid {
        margin: auto;
    }

    .pix-box {
        margin: 25px auto;
    }

    .pix-qrcode {
        margin: auto;
    }
}

.pix-toast {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 28px;

    background:
        linear-gradient(135deg,
            #0099ff,
            #7c3cff);

    color: white;

    font-size: 17px;
    font-weight: 800;

    border-radius: 40px;

    box-shadow:
        0 15px 35px rgba(0, 100, 255, .35);

    transform:
        translateY(50px) scale(.8);

    opacity: 0;

    pointer-events: none;

    transition: .35s ease;
}


.pix-toast span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    color: #0099ff;

    border-radius: 50%;

    font-size: 22px;

    animation: heartPulse 1.2s infinite;
}


.pix-toast.show {

    opacity: 1;

    transform:
        translateY(0) scale(1);
}


@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}


@media(max-width:600px) {

    .pix-toast {

        left: 20px;
        right: 20px;
        bottom: 20px;

        justify-content: center;
    }

}

footer {
    background: #006cff;
    text-align: center;
    padding: 25px;
    color: white;
}

footer img {
    width: 80px;
}

@keyframes floatKids {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media(max-width:900px) {

    .idabmusic {
        display: none;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }

    .header nav {
        overflow: auto;
        width: 100%;
    }

    .hero,
    .about,
    .videos-home {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 45px;
    }

    .quick {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 15px;
    }

    .video-list {
        grid-template-columns: 1fr;
    }

    .donate {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.share-drawer {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.share-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: white;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    transition: .3s;
}

.share-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .9;
    transition: .3s;
}

.share-btn span {
    position: relative;
    z-index: 2;
    font-size: 28px;
}

.share-btn small {
    display: none;
}

.share-btn:hover {
    transform: translateY(-8px) scale(1.08) rotate(-3deg);
}


.share-btn.whatsapp:before {
    background: linear-gradient(135deg, #25d366, #00a854);
}

.share-btn.facebook:before {
    background: linear-gradient(135deg, #1877f2, #004aad);
}

.share-btn.telegram:before {
    background: linear-gradient(135deg, #2aa8df, #0077b5);
}

.copy-btn:before {
    background: linear-gradient(135deg, #ff4fa3, #7c3cff);
}


.share-btn:after {
    content: "✨";
    position: absolute;
    top: -15px;
    right: -10px;
    opacity: 0;
    transition: .3s;
}


.share-btn:hover:after {
    opacity: 1;
    top: 5px;
    right: 5px;
}


@media(max-width:700px) {

    .share-drawer {
        right: 15px;
        bottom: 15px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .share-btn span {
        font-size: 23px;
    }
}