/* Reset y bases */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.minimal-container {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header y efectos */
.status-badge {
    background: #fef3c7;
    color: #b45309;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.accent {
    color: #b45309;
    position: relative;
}

.tagline {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

/* Botón Principal - Más "movible" */
.btn-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-bottom: 40px;
}

.btn-live:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Social Grid - Responsive total */
.social-hub h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 10px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.social-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #444;
}

.social-card:hover {
    transform: scale(1.05);
    border-color: #b45309;
}

/* Colores de marca */
.tiktok { color: #000; }
.instagram { color: #E1306C; }
.facebook { color: #1877F2; }

/* Pie de página */
.tracking-[3px] {
    letter-spacing: 3px;
    font-size: 0.65rem;
    color: #999;
    line-height: 1.6;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 380px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    .social-card {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}
/* Sección Sobre Mí */
.about-me {
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-in-out;
}

.profile-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto -40px auto; /* Para que la foto sobresalga de la tarjeta */
    position: relative;
    z-index: 2;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card {
    background: white;
    padding: 60px 20px 25px 20px;
    border-radius: 25px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.about-card h3 {
    font-size: 1.1rem;
    color: #b45309;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.badge-tech {
    font-size: 0.7rem;
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
:root {
    --primary: #b45309;
    --accent: #d97706;
    --bg-gradient: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: #444;
    overflow-x: hidden;
}

.minimal-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* --- NUEVO HEADER Y LOGO --- */
.top-nav {
    margin-bottom: 2rem;
    animation: dropIn 1s ease forwards;
}

.logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.main-logo { width: 100%; height: auto; object-fit: contain; }

/* --- HERO SECTION --- */
.hero h1 { font-size: 2.5rem; margin-top: 1rem; line-height: 1.1; }
.accent { color: var(--primary); font-weight: 600; }

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

/* --- ABOUT ME CON ESTILO --- */
.about-me {
    margin-top: 3rem;
    position: relative;
}

.profile-frame {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto -40px;
    z-index: 2;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 60px 20px 20px;
    box-shadow: var(--shadow);
}

/* --- BOTONES Y ACCIONES --- */
.btn-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 2rem 0;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-live:hover { transform: scale(1.05); }

/* --- SOCIAL GRID --- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 1.5rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: #444;
    font-size: 0.8rem;
    transition: 0.3s ease;
}

.glass-hover:hover {
    background: white;
    transform: translateY(-5px);
}

.signature {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--primary);
}

/* --- ANIMACIONES --- */
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 400px) {
    .hero h1 { font-size: 2rem; }
    .social-grid { grid-template-columns: 1fr; }
}
/* Esto asegura que si por algo el JS falla, el contenido sea legible */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    visibility: hidden; /* Evita que ocupen espacio visual antes de tiempo */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* --- ESTILO DEL LOGO ACTUALIZADO --- */
.logo-container {
    width: 200px;           /* El tamaño que querías */
    height: 200px;          /* Lo mantenemos cuadrado para que sea un círculo perfecto */
    margin: 0 auto;         /* Centrado automático */
    background: #ffffff;    /* Fondo blanco por si el logo tiene transparencia */
    padding: 12px;          /* Un poquito de aire interno */
    border-radius: 50%;     /* Lo hace redondito y elegante */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Sombra muy suave, tipo nube */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animación juguetona */
}

/* Efecto Emma: Cuando pases el mouse, el logo se agranda un poquito */
.logo-container:hover {
    transform: scale(1.1) rotate(5deg);
    cursor: pointer;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Asegura que el logo no se deforme */
}