:root {
    --primary: #008C9E;         /* Tu color turquesa */
    --primary-dark: #00707E;    /* Versión más oscura para hover */
    --text-dark: #111827;       /* Casi negro para títulos */
    --text-body: #4B5563;       /* Gris para textos */
    --text-light: #9CA3AF;      /* Gris claro para detalles */
    --bg-page: #F0F0F0;         /* Fondo gris suave de la cotización */
    --bg-card: #FFFFFF;
    --radius: 24px;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card-container {
    width: 100%;
    max-width: 420px; /* Ancho típico de móvil premium */
}

.business-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 8px solid var(--primary); /* Detalle de color superior */
    animation: slideUp 0.6s ease-out forwards;
}

/* --- Header --- */
.brand-logo {

    margin-bottom: 25px;
        display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: var(--primary);
}

.tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

/* --- Profile --- */
.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.profile-role {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-top: 4px;
}

.divider {
    border: none;
    height: 1px;
    background-color: #E5E7EB;
    margin: 24px 0;
}

/* --- Services --- */
.services-section h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    display: inline-block; /* Para centrar el bloque pero alinear texto a la izq */
}

.service-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
}

/* --- Buttons --- */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 50px; /* Estilo píldora */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 140, 158, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-body);
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Footer --- */
.card-footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.credentials {
    font-family: monospace; /* Toque técnico para la cédula */
    color: var(--text-body);
    opacity: 0.8;
}

/* --- Animation --- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Adjustments --- */
@media (min-width: 640px) {
    .business-card {
        padding: 50px;
    }
}