/* cssGen.css - Estilos generales para AETN */
:root {
    --aetn-blue: #007bff;
    --aetn-dark-blue: #0056b3;
    --aetn-light-gray: #f8f9fa;
    --aetn-text-dark: #2c3e50;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--aetn-text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
.aetn-header {
    background: linear-gradient(135deg, var(--aetn-blue), var(--aetn-dark-blue));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aetn-logo {
    height: 50px;
    width: auto;
}

.header-title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer styles */
.aetn-footer {
    background-color: var(--aetn-light-gray);
    color: var(--aetn-blue);
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid #dee2e6;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: var(--aetn-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--aetn-dark-blue);
    text-decoration: underline;
}

/* Utility classes */
.text-center { text-align: center; }
.text-blue { color: var(--aetn-blue); }
.bg-blue { background-color: var(--aetn-blue); }
.no-link { text-decoration: none; color: inherit; }
.no-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .aetn-logo {
        height: 40px;
    }
}
