/* VARIABLES DE COLOR */
:root {
    --bg-violet-dark: #4b124f;
    --bg-violet-light: #5b2a6f;
    --text-green: #235c3f;
    --text-violet: #5a2f73;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
}


body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-violet-dark), var(--bg-violet-light));
    min-height: 100vh;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    
}

#app {
    width: 100%;
    max-width: 500px; /* Ancho típico de link-in-bio */
}

/* GESTIÓN DE VISTAS */
.view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CABECERA PRINCIPAL */
.header-main {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
}

.main-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 16px;
    font-weight: 300;
    margin-top: 5px;
}

/* BOTONES */
.button-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-main {
    background-color: var(--white);
    color: var(--text-green);
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow);
}

.btn-main:hover {
    transform: scale(1.02);
    filter: brightness(0.95);
}

.btn-back {
    background: none;
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* DISEÑO DE PÁGINAS INTERNAS */
.card-content {
    background: var(--white);
    color: #333;
    padding: 50px 45px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
}

.title-accent { color: var(--text-violet); font-size: 24px; margin-bottom: 5px; }
.role { font-weight: 300; font-style: italic; color: var(--text-violet); margin-bottom: 20px; }
.name-bold { font-weight: 700; color: var(--text-violet); }

.bio-text { line-height: 1.6; margin-bottom: 20px; color: var(--text-violet);}

.block-experience {

    display: flex;
    gap: 15px;
    align-items: center;
}

.purple-box {
    background: var(--text-violet);
    color: white;
    padding: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    flex: 1;
}
.explainer{color: var(--text-violet);}
.final-quote{color: var(--text-violet);}
.contact-mini{color: var(--text-violet);}


.formation-text {
    flex: 2;
    font-size: 13px;
    color: var(--text-violet);
}

.brand-name { color: var(--text-violet); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
.title-page { color: var(--text-violet); font-size: 22px; margin-bottom: 20px; }
.quote { border-left: 3px solid var(--text-green); padding-left: 10px; font-style: italic; margin-bottom: 15px; font-weight: 600; color: var(--text-violet);}
.green-block { background: var(--text-green); color: white; padding: 10px; text-align: center; text-transform: uppercase; font-weight: 700; margin: 20px 0; }
.highlight-text { color: var(--text-green); font-weight: 600; text-align: center; }
.icon-center { text-align: center; margin: 15px 0; }
.impact-box { background: #f4f4f4; padding: 15px; border-radius: 5px; font-size: 13px; margin-top: 20px; color: var(--text-violet);}

.split-info { display: flex; gap: 15px; margin-top: 20px; align-items: flex-start; }
.target-list ul { list-style: none; font-size: 14px; line-height: 1.8;color: var(--text-violet); }

/* SECCIÓN CONTACTO */
.contact-full {
    text-align: center;
}

.logo-container-large {
    width: 180px;
    height: 180px;
    margin: 40px auto;
    background: white;
    border-radius: 50%;
    padding: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.icon-circle:hover {
    background: rgba(255,255,255,0.2);
}

.description{
text-align: justify;
}

#fin{
    text-align: center;
    align-items: center;
    color: var(--text-violet);
}

#med{
   text-align: center;
    align-items: center;
    margin-bottom: 5%;
}

.prolijo{
    margin-bottom: 2%;
    color: var(--text-violet);
}

/* ACTUALIZA ESTE BLOQUE EN style.css */
.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    
    /* MODIFICADO: Aumentamos un poco el tamaño para compensar la falta de padding */
    width: 60px;
    height: 60px;
    
    /* MODIFICADO: Hacemos el fondo transparente */
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    
    /* Estado inicial: oculto */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    
    /* Centrar la imagen adentro, sin padding extra */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Sin padding para que la imagen toque los bordes */
}

/* Esta clase se agrega con JS cuando scroleas */
.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top img {
    /* MODIFICADO: La imagen ahora ocupa todo el tamaño del botón */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-scroll-top:hover {
    /* MODIFICADO: Un ligero aumento de tamaño para el efecto hover */
    transform: scale(1.1) translateY(-5px);
    /* Quitamos la sombra del botón, ya que no se ve */
    box-shadow: none;
}
