﻿/* Estilos Generales del Tema Oscuro */
body {
    background-color: #1a1a2e; 
    color: #e0e0e0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex-grow: 1;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Encabezado y Pie de Página */
header, footer {
    background-color: #1c1c1c;
    padding: 15px 5%;
    border-bottom: 1px solid #333;
}

footer {
    border-top: 1px solid #333;
    border-bottom: none;
    text-align: center;
    font-size: 0.9em;
    color: #888;
}

.company-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
}

/* Estilos para botones y enlaces */
a {
    color: #e94560;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.btn {
    background-color: #e94560;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

    .btn:hover {
        background-color: #B18436;
        transform: scale(1.05);
        text-decoration: none;
    }