/* Reset básico para limpiar estilos por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo-container {
    margin-bottom: 35px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

.content h1 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin-bottom: 25px;
}

/* Animación sutil de carga */
.spinner {
    margin: 0 auto 40px auto;
    width: 35px;
    height: 35px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e52321; /* Color rojo Ray Bus */
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sección de contacto */
.contact-section {
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
}

.contact-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilos de botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Botón WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Botón Instagram */
.btn-instagram {
    background-color: #1a1a1a; /* Negro para combinar con la marca */
    color: white;
    border: 1px solid #333;
}

.btn-instagram:hover {
    background-color: #e52321; /* Cambia a rojo al pasar el cursor */
    border-color: #e52321;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 35, 33, 0.3);
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 480px) {
    .content h1 {
        font-size: 1.35rem;
    }
    .buttons-container {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
}
/* Agregá esto al final de tu archivo styles.css */
.credits {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
