/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tema padrão (Janeiro) - Azul Ciano */
    --primary-color: #00D4FF;
    --primary-dark: #0099CC;
    --primary-light: #00E6FF;
    --primary-rgb: 0, 212, 255;
    --background-start: #0a0a0a;
    --background-middle: #1a1a2e;
    --background-end: #16213e;
    
    /* Cores neutras que não mudam com o tema */
    --card-background: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Fundo neutro fixo - não muda com temas */
    --neutral-bg-start: #0a0a0a;
    --neutral-bg-middle: #1a1a2e;
    --neutral-bg-end: #16213e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--neutral-bg-start) 0%, var(--neutral-bg-middle) 50%, var(--neutral-bg-end) 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
    transition: all 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

.logo-text {
    text-align: center;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.company-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Main content */
.main {
    flex: 1;
}

.hero {
    margin-bottom: 4rem;
}

.status {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.status h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.status p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 400;
}

/* Products section */
.products {
    margin-bottom: 4rem;
}

.products h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.2);
    border-color: var(--card-hover);
    background: var(--card-hover);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.product-icon img {
    transition: all 0.3s ease;
}

.product-icon img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.5)) !important;
}

.product h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    background: linear-gradient(135deg, var(--primary-light), #00B3CC);
}

/* About section */
.about {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    text-align: center;
    margin-bottom: 3rem;
}

.about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
.footer {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--card-background);
}

.social-links a:hover {
    opacity: 1;
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

.pingu-link img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(var(--primary-rgb), 0.3));
}

.pingu-link:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.6));
}

.coming-soon {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .company-tagline {
        font-size: 0.9rem;
    }
    
    .logo-symbol {
        width: 100px;
        height: 100px;
    }
    
    .status {
        padding: 2rem;
    }
    
    .status h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product {
        padding: 2rem;
    }
    
    .product-icon {
        font-size: 2.5rem;
        height: 60px;
    }
    
    .product-icon img {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.8rem;
    }
    
    .company-tagline {
        font-size: 0.8rem;
    }
    
    .status h2 {
        font-size: 1.5rem;
    }
    
    .status p {
        font-size: 1rem;
    }
    
    .logo-symbol {
        width: 80px;
        height: 80px;
    }
    
    .logo-symbol svg {
        width: 60px;
        height: 60px;
    }
} 