/*
Theme Name: Atelogia
Theme URI: https://atelogia.pt
Description: Tema minimalista para Atelogia com logo Golden Ratio
Version: 1.0.0
Author: Jonas Paul
Author URI: https://hipnoporto.pt
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atelogia
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    color: #334155;
    line-height: 1.6;
}

/* Container */
.atelogia-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.atelogia-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.atelogia-hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Logo */
.atelogia-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out;
}

.atelogia-logo svg {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.atelogia-name {
    font-weight: 700;
    font-size: clamp(48px, 8vw, 72px);
    letter-spacing: -1.5px;
    line-height: 1;
}

.atelogia-name-primary {
    color: #334155;
}

.atelogia-name-accent {
    color: #10B981;
}

/* Tagline */
.atelogia-tagline {
    font-size: clamp(18px, 3vw, 24px);
    color: #64748b;
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulário Container */
.atelogia-form-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.atelogia-footer {
    padding: 24px 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Animação */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 640px) {
    .atelogia-logo {
        flex-direction: column;
        gap: 12px;
    }
    
    .atelogia-logo svg {
        width: 60px;
        height: 60px;
    }
    
    .atelogia-form-wrapper {
        padding: 28px 20px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .atelogia-logo svg {
        width: 65px;
        height: 65px;
    }
}
