/* =========================
   BODY
========================= */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;          /* usar height en vez de min-height */
    overflow: hidden;      /* evita barras de scroll */
    font-family: 'Montserrat', sans-serif;
    background: #dfe3e6;
}

.pantalla {
    width: 100%;
    max-width: 430px;
    height: 100vh;         /* ocupa toda la altura exacta */
    margin: auto;
    display: flex;
    align-items: flex-start;   /* arriba */
    justify-content: center;   /* centrado horizontal */
    padding: 0;                /* quitar padding que genera scroll */
    box-sizing: border-box;
}


/* =========================
   CONTENEDOR APP
========================= */

.pantalla {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 15px;
    padding-top: 30px; /* Margen superior */
}


/* =========================
   CARD PRINCIPAL
========================= */

.home-card{

    width:100%;

    background:
        radial-gradient(circle at top,
        #42c71f 0%,
        #14661b 55%,
        #042d08 100%);

    border-radius:28px;

    padding:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.22);

    text-align:center;

    overflow:hidden;

}

/* =========================
   LOGO
========================= */

.logo img{

    width:100%;
    max-width:210px;

    display:block;

    margin:auto;
}

/* =========================
   SLOGAN
========================= */

.slogan {
    font-size: .95rem !important;
    font-weight: 500 !important;
    line-height: 1.3;
    margin-top: -20px;   /* ajusta si quieres más espacio */
    margin-bottom: 10px;
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 4px rgba(0,0,0,.25);
    text-align: center;  /* asegura que quede centrado */
}


/* =========================
   PARTICIPANTES
========================= */

.participantes{

    margin-top:10px;
    margin-bottom:15px;
}

.participantes img{

    width:100%;
    max-width:260px;

    display:block;

    margin:auto;
}

/* =========================
   BOTONES
========================= */

.contenedor-botones{
    width:100%;
}

.btn-marcador{

    width:100%;

    border:none !important;

    border-radius:14px !important;

    font-size:1rem !important;

    font-weight:700 !important;

    padding:12px 15px !important;

    margin-bottom:10px;

    transition:.2s;

    box-shadow:0 6px 14px rgba(0,0,0,.20);
}

.btn-marcador:hover{
    transform:translateY(-2px);
}

.btn-crear{

    background:linear-gradient(
        to bottom,
        #67ec25,
        #239612) !important;

    color:white !important;
}

.btn-unirse{

    background:white !important;

    color:#111 !important;
}

/* =========================
   FOOTER
========================= */

.footer-text{

    font-size:.85rem !important;

    font-weight:600;

    margin-top:5px;

    opacity:.9;
    
    color:#ffffff;
}