@charset "UTF-8";

/* ==============================================================
   CSS Variables & Design Tokens (Alto Contraste / Dark Theme)
   ============================================================== */
:root {
    --vibrant-orange: #FF8C00;
    --navy-blue: #003366;
    --white: #FFFFFF;
    
    --orange-gradient: linear-gradient(135deg, #FF8C00 0%, #ff6b00 100%);
    --navy-gradient: linear-gradient(135deg, #003366 0%, #001a33 100%);
    
    /* Fundo Escuro para resolver o "Totalmente Claro" e dar destaque */
    --bg-main: #020e1c; /* Azul marinho muito profundo quase preto */
    --glass-bg: rgba(255, 255, 255, 0.06); 
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Cores de Texto */
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    position: relative;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

::selection {
    background-color: var(--vibrant-orange);
    color: var(--white);
}

/* ==============================================================
   Dynamic Background Blobs (Modern Touch)
   ============================================================== */
.background-anim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(90px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35; /* Suaviza as cores atrás do vidro */
    animation: floatingBlobs 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-orange {
    width: 50vw; height: 50vw; min-width: 350px; min-height: 350px;
    background: var(--vibrant-orange); top: -20%; left: -10%;
}

.blob-blue {
    width: 45vw; height: 45vw; min-width: 300px; min-height: 300px;
    background: var(--navy-blue); bottom: -15%; right: -10%;
    animation-delay: -5s; animation-direction: alternate-reverse;
}

.blob-white {
    width: 30vw; height: 30vw; min-width: 200px; min-height: 200px;
    background: rgba(255, 255, 255, 0.2); top: 35%; left: 35%; 
    animation-duration: 20s;
}

@keyframes floatingBlobs {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(5%, 10%) scale(1.1) rotate(45deg); }
    100% { transform: translate(-5%, 5%) scale(0.95) rotate(-15deg); }
}

/* ==============================================================
   Main Container (Glassmorphism)
   ============================================================== */
.container {
    width: 100%; max-width: 480px; margin: 0 auto;
    padding: 3rem 2rem; border-radius: 32px;
    box-shadow: 0 20px 50px var(--glass-shadow), inset 0 0 0 1px var(--glass-border);
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); /* Safari support */
}

/* ==============================================================
   Header Profile / Logo Section
   ============================================================== */
.profile {
    text-align: center; margin-bottom: 2.5rem; width: 100%;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-wrapper {
    width: 100%; max-width: 240px; height: auto; margin: 0 auto 0.3rem auto;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative; display: flex; justify-content: center; align-items: center;
    overflow: visible; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-wrapper:hover {
    transform: scale(1.08) rotate(3deg);
}

.logo-img {
    width: 100%; height: auto; object-fit: contain; z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.logo-placeholder {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 100%; height: 100%; background-color: var(--white); z-index: 1;
}

.logo-placeholder span {
    font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; line-height: 1;
}

.txt-navy { color: var(--navy-blue); }
.txt-orange { color: var(--vibrant-orange); }

.wifi-icon {
    margin-top: 5px; font-size: 1rem; animation: pulse 2s infinite; color: var(--navy-blue);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.profile h1 {
    font-family: var(--font-heading); font-size: 1.8rem;
    color: var(--text-main); font-weight: 800; margin-bottom: 0.4rem; letter-spacing: -0.5px;
}

.profile p {
    font-size: 0.95rem; color: var(--text-muted); font-weight: 400;
}

/* ==============================================================
   Links Navigation List
   ============================================================== */
.links {
    width: 100%; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}

.link-btn {
    text-decoration: none; display: flex; align-items: center;
    padding: 0.8rem 1rem; border-radius: 20px; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; overflow: hidden; will-change: transform, box-shadow;
}

.btn-icon {
    width: 45px; height: 45px; border-radius: 14px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.3rem; transition: transform 0.3s ease; flex-shrink: 0;
}

.link-label {
    flex: 1; text-align: left; padding-left: 1rem; font-size: 1.05rem; letter-spacing: 0.2px;
}

.btn-arrow {
    width: 30px; display: flex; justify-content: flex-end; font-size: 1rem;
    opacity: 0.5; transition: all 0.3s ease; color: var(--text-muted);
}

.link-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.link-btn:active {
    transform: scale(0.98);
}

.link-btn:hover .btn-icon {
    transform: scale(1.1);
}

.link-btn:hover .btn-arrow {
    opacity: 1; transform: translateX(3px); color: var(--vibrant-orange);
}

/* === Button Variations === */

/* Highlight Buttons (Orange Background - For website/whatsapp focus) */
.highlight-btn {
    background: var(--orange-gradient); color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-btn .btn-icon {
    background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); color: var(--white);
}

.highlight-btn .btn-arrow { color: rgba(255,255,255,0.7); }

.highlight-btn:hover {
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
}
.highlight-btn:hover .btn-arrow { color: var(--white); }

/* Standard Buttons (Dark Glass Background - For Apps) */
.standard-btn {
    background: rgba(255, 255, 255, 0.08); color: var(--text-main);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-btn .btn-icon {
    background: rgba(255, 255, 255, 0.1); color: var(--text-main);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.standard-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5); /* Borda fica laranja no hover */
}

.standard-btn:hover .btn-icon {
    background: var(--vibrant-orange); color: var(--white);
}

/* ==============================================================
   Footer & Socials
   ============================================================== */
.socials {
    text-align: center; width: 100%;
}

.socials-title {
    font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
    margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px;
}

.social-icons-wrapper {
    display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 1.5rem;
}

.social-icon {
    display: flex; justify-content: center; align-items: center;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); color: var(--text-main);
    text-decoration: none; font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: var(--vibrant-orange); color: var(--white);
    transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.4);
}

.copyright {
    font-size: 0.75rem; color: rgba(255, 255, 255, 0.3);
}

/* ==============================================================
   Responsive Queries
   ============================================================== */
@media (max-width: 480px) {
    .container {
        padding: 2.5rem 1.5rem; border-radius: 28px;
    }
    
    .blob-orange { width: 65vw; height: 65vw; top: -15%; left: -15%; }
    .blob-blue { width: 55vw; height: 55vw; right: -15%; }
    
    .profile h1 { font-size: 1.6rem; }
    
    .link-btn { padding: 0.8rem 1rem; }
    .link-label { font-size: 0.95rem; }
    
    .btn-icon { width: 40px; height: 40px; font-size: 1.1rem; }
}
