/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --red-deep: #1a0303;
    --red-dark: #3d0808;
    --red-mid: #6b0f0f;
    --red-accent: #a01818;
    --gold: #FFD700;
    --gold-soft: #f5c542;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
}

body {
    /* Gradiente animado en tonos rojos oscuros profesionales */
    background: linear-gradient(-45deg, #1a0303, #3d0808, #6b0f0f, #2d0505);
    background-size: 400% 400%;
    animation: gradient 18s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    color: var(--text-white);
    position: relative;
    overflow-x: hidden;
}

/* Textura sutil de grano para profundidad */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(160, 24, 24, 0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* --- HEADER PROFILE --- */
.profile {
    margin-bottom: 30px;
}

.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 215, 0, 0.2);
    background-color: white;
    object-fit: contain;
    padding: 4px;
}

.profile h1 {
    color: var(--text-white);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.profile p {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.profile p span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-top: 6px;
}

/* --- LINKS GENERALES --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.link-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.link-card:hover i {
    transform: scale(1.15);
}

/* Botón destacado: WhatsApp / Solicitar Servicio */
.link-card.highlight {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 1px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: white;
}

.link-card.highlight i {
    color: white;
    font-size: 1.5rem;
}

.link-card.highlight:hover {
    background: linear-gradient(135deg, #2dd96e, #14a085);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    border-color: rgba(37, 211, 102, 0.7);
}

/* --- SECCIÓN DE TELÉFONOS --- */
.phones-section {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 20px 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title i {
    font-size: 1rem;
}

.phones-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.phone-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(4px);
}

.phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-accent), var(--red-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(160, 24, 24, 0.4);
}

.phone-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.phone-city {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-soft);
    font-weight: 600;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* --- FOOTER --- */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 480px) {
    .profile h1 { font-size: 1.5rem; }
    .link-card { font-size: 0.8rem; padding: 14px 16px; }
    .phone-number { font-size: 0.95rem; }
}
