:root {
    --sky-light: #e0f6ff;
    --sky-dark: #87ceeb;
    --brand-main: #ff6b00; 
    --brand-hover: #ff8533;
    --text-dark: #2c3e50;
    --text-grey: #666666; 
    --text-light: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.55); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky-light) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 40px 15px; 
}

.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.burger {
    position: absolute;
    opacity: 0.7;
    animation: float 15s infinite ease-in-out alternate;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2)); 
}

.b1 { top: 5%; left: 5%; width: 90px; filter: blur(1px) drop-shadow(0 5px 10px rgba(0,0,0,0.2)); animation-duration: 12s; }
.b2 { top: 65%; left: 80%; width: 140px; filter: blur(0px) drop-shadow(0 8px 15px rgba(0,0,0,0.3)); opacity: 0.8; animation-duration: 18s; z-index: 2;} 
.b3 { top: 85%; left: 15%; width: 110px; filter: blur(1.5px) drop-shadow(0 5px 10px rgba(0,0,0,0.2)); animation-duration: 14s; }
.b4 { top: 15%; left: 75%; width: 70px; filter: blur(3px) drop-shadow(0 3px 7px rgba(0,0,0,0.15)); animation-duration: 16s; }
.b5 { top: 40%; left: 3%; width: 85px; filter: blur(2px) drop-shadow(0 4px 8px rgba(0,0,0,0.18)); animation-duration: 20s; opacity: 0.6; }
.b6 { top: 55%; left: 10%; width: 55px; filter: blur(5px); opacity: 0.4; animation-duration: 13s; }
.b7 { top: 25%; left: 85%; width: 65px; filter: blur(4px); opacity: 0.5; animation-duration: 17s; }
.b8 { top: 75%; left: 70%; width: 50px; filter: blur(6px); opacity: 0.4; animation-duration: 19s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(20deg); }
}

.link-container {
    width: 92%; 
    max-width: 420px; 
    background: var(--card-bg);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.7); 
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding-bottom: 25px;
    z-index: 1; 
    overflow: hidden;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.banner-box {
    width: 100%;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-box {
    margin-top: -55px; 
}

.logo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--text-light);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #fff;
}

.profile-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 10px;
    font-weight: 700;
}

.profile-subtitle {
    font-size: 0.9rem;
    color: #444;
    padding: 0 20px;
    margin-top: 5px;
    font-weight: 600;
}

.links-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 25px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9); 
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.link-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #ffffff;
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.main-btn {
    position: relative;
    background: var(--brand-main);
    color: var(--text-light);
    border: none;
    padding: 18px;
    margin-bottom: 5px; 
    animation: pulse 2s infinite;
}

.main-btn:hover {
    background: var(--brand-hover);
    color: var(--text-light);
}

.main-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.main-btn .btn-content strong { font-size: 1.2rem; text-transform: uppercase; }
.main-btn .btn-content span { font-size: 0.75rem; font-weight: 400; opacity: 0.9; }

.badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #27ae60; 
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    transform: rotate(5deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.platform-links {
    display: flex;
    gap: 12px;
    width: 100%;
}

.platform-btn {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.platform-btn:hover {
    transform: translateY(-3px);
}

.platform-icon {
    width: 40px; 
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px; 
}

.platform-btn span {
    font-size: 0.7rem; 
    font-weight: 600;
    line-height: 1.2;
}

/* iFood */
.ifood-btn {
    background-color: #ffffff; 
    color: var(--text-grey); 
    border: 1px solid rgba(0, 0, 0, 0.05); 
}
.ifood-btn:hover { background-color: #fdfdfd; }

/* CORREÇÃO: Classe alterada para .app99-btn */
.app99-btn {
    background-color: #ffffff; 
    color: var(--text-grey); 
    border: 1px solid rgba(0, 0, 0, 0.05); 
}
.app99-btn:hover { background-color: #fdfdfd; }

.social-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); 
    margin-left: 25px;
    margin-right: 25px;
}

.social-icons-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(44, 62, 80, 0.8);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--brand-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.copyright-text {
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
    text-align: center;
}
