@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("../fonts/CyGroteskGrand.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Agrandir";
    src: url("../fonts/Agrandir.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "CyGroteskBold";
    src: url("../fonts/cy-grotesk-grand-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Cy Grotesk Grand", sans-serif;
    -webkit-user-select: none;   
    -moz-user-select: none;      
    -ms-user-select: none;       
    user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html, body {
    overflow-x: hidden;
}




/* =========================
   HEADER
   ========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 60px;

    z-index: 100;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;

    font-family: "CyGroteskBold", sans-serif;
    font-size: 18px;
    font-weight: bold;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;
    
    background-color: #2e0756;
    background-image: url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    position: relative;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;

    min-height: 100vh;
}

.hero-logo-jennifer {
    position: absolute;

    width: 430px;
    height: auto;

    left: 7%;
    top: 26%;

    z-index: 3;
}

.hero-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background-color: #fc310d;

    right: 7%;
    bottom: 7%;

    z-index: 1;
}

.hero-photo {
    position: absolute;

    width: 410px;
    height: auto;

    right: 6%;
    bottom: 0;

    z-index: 2;
}

.hero-logo-primero {
    position: absolute;

    width: 150px;
    height: auto;

    left: 21%;
    top: 63%;

    z-index: 4;
}

.hero-podcast {
    position: absolute;

    width: 430px;
    height: 80px;

    left: 40%;
    bottom: 25px;

    transform: translateX(-50%);

    z-index: 6;

    overflow: hidden;
    border-radius: 12px;
}

.hero-podcast iframe {
    width: 100%;
    height: 80px;

    border: none;
    border-radius: 12px;
    display: block;
}

.name-marquee {
    width: 100%;
    height: 70px;

    background-color: #f44773;

    overflow: hidden;

    display: flex;
    align-items: center;

    position: relative;
}

.name-marquee-track {
    display: flex;

    width: max-content;

    animation: marquee 18s linear infinite;
}

.name-marquee-content {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.name-marquee-content span {
    font-family: "Cy Grotesk Grand", sans-serif;

    color: #ffffff;

    font-size: 25px;
    font-weight: 700;

    white-space: nowrap;

    line-height: 1;
}

.name-marquee-content .marquee-dot {
    margin: 0 28px;

    font-size: 28px;
}

/* Movimiento infinito */

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.bio-section {
    position: relative;
    width: 105%;
    min-height: 720px;

    background-image: url("../img/fondo-perros.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.bio-container {
    position: relative;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;

    min-height: 720px;
}

.bio-colombia {
    position: absolute;

    width: 390px;
    height: auto;

    left: 7%;
    top: 8%;

    z-index: 1;
}

.bio-title {
    position: absolute;

    left: 29%;
    top: 7%;

    margin: 0;

    font-family: "CyGroteskBold", sans-serif;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;

    color: #3a0a7f;

    z-index: 6;
}

.bio-jennifer {
    position: absolute;

    width: 630px;
    height: auto;

    left: 2%;
    bottom: 0;
    top: 15%;
    z-index: 4;
}

.bio-content {
    position: absolute;

    width: 42%;
    max-width: 560px;

    right: 7%;
    top: 7%;

    font-family: "Agrandir", sans-serif;
    color: #3a0a7f;

    z-index: 5;
}

.bio-item {
    margin: 0;
}

.bio-item p {
    margin: 0;

    font-size: 25px;
    line-height: 1.05;
}

.bio-item strong {
    font-weight: 900;
}

/* Líneas punteadas */

.bio-divider {
    width: 100%;
    height: 3px;

    margin: 17px 0;

    background-image: repeating-linear-gradient(
        to right,
        #3a0a7f 0,
        #3a0a7f 28px,
        transparent 28px,
        transparent 52px
    );
}

.milibro-section {
    position: relative;
    width: 100%;
    min-height: 680px;
 
    background-image: url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    overflow: hidden;
 
    padding: 70px 0;
}

/* Línea punteada vertical del lado izquierdo */
.milibro-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34px;
 
    border-left: 2px dashed rgba(255, 255, 255, 0.28);
 
    z-index: 2;
}
 
.milibro-container {
    position: relative;
    z-index: 4;
 
    display: flex;
    align-items: center;
    gap: 40px;
 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
 
.milibro-libro {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.milibro-libro-img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
 
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}
 
.milibro-contenido {
    flex: 1;
    color: #ffffff;
}
 
.milibro-titulo {
    text-align: right;
    font-family: "CyGroteskBold", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
 
    font-size: 64px;
    line-height: 1.02;
 
    color: #e3d3f7;
 
    margin: 0 0 14px;
}
 
.milibro-firma {
    width: 220px;
    height: auto;
 
    color: #ee3f6e;
 
    display: block;
    margin: 0 0 26px auto;
}
 
.milibro-texto {
    font-family: "Agrandir", sans-serif;
    font-size: 20px;
    line-height: 1.6;
 
    color: #ffffff;
    text-align: right;
 
    margin: 0 0 20px;
}

.causas-section {
    position: relative;
    z-index: 2;
 
    width: 100%;
    min-height: 780px;
 
    background-color: #dcc6e6;
    background-image: url("../img/fondo-perros.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    overflow: visible;
}
 
.causas-container {
    position: relative;
 
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
 
    padding-top: 90px;
    padding-bottom: 90px;
 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
 
.causas-texto {
    position: relative;
    z-index: 2;
 
    max-width: 600px;
 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
 
    text-align: right;
}
 
.causas-titulo-wrap {
    position: relative;
 
    display: inline-block;
}
 
.causas-titulo {
    position: relative;
    z-index: 2;

    font-family: "CyGroteskBold", sans-serif;
    color: #3a0a7f;
 
    font-size: 86px;
    line-height: 0.95;
 
    text-transform: uppercase;
    text-align: right;
 
    margin: 0 0 24px;
}
 
.causas-linea { 
    position: absolute;

    width: 200px;
    height: auto;

    left: -10px;
    top: 50px;

    z-index: 10;

    pointer-events: none;
    overflow: visible;

}
 
.causas-descripcion {
    font-family: "Agrandir", sans-serif;
    color: #3a0a7f;
 
    font-size: 25px;
    line-height: 1.45;
 
    text-align: right;
 
    margin: 0 0 28px;
}
 
.causas-boton {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: auto;
    height: auto;

    background-color: #ee3f6e !important;
    color: #ffffff !important;

    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    font-size: 18px;

    border: none !important;
    border-radius: 0 !important;

    padding: 10px 42px;

    text-decoration: none !important;

    position: relative;
    z-index: 10;

    transform-origin: center;
}

.causas-boton::before,
.causas-boton::after {
    content: none !important;
    display: none !important;
}
 
.causas-boton:hover {
    background-color: #d4335e;
    color: #ffffff;
    animation: causasPendulo 0.45s ease-in-out infinite;
}

@keyframes causasPendulo {

    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.causas-recurso {
    position: relative;
    z-index: 2;
 
    display: block;
    text-decoration: none;
}
 
.causas-recurso-caja {
    width: 520px;
    height: 440px;
 
    background-color: #ffffff;
    border: 2px solid #000000;
    overflow: hidden; 
    padding: 5px;
    box-sizing: border-box;
 

}

.causas-recurso-img {
    width: 100%;
    height: 100%;
 
    object-fit: contain;
    display: block;
}

.causas-recurso:hover .causas-recurso-img {
    opacity: 0.92;
}

 
.causas-recurso-texto {
    font-family: "Agrandir", sans-serif;
    color: #3a0a7f;
    font-weight: bold;
 
    text-align: center;
 
    margin-top: 16px;
}
 


@media (max-width: 1350px) {
 
    .causas-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
 
        gap: 0;
    }

    .causas-texto {
        display: contents;
    }
 
    .causas-titulo-wrap {
        order: 1;
 
        width: 100%;
 
        display: flex;
        justify-content: center;
        align-items: center;
 
        margin: 0 auto 20px;
    }
 
    .causas-titulo {
        text-align: center;
    }
 

    .causas-linea {
        left: 50%;
        max-width: 150px;
        top: 120px;
        transform: translateX(-50%);
    }
 
    .causas-descripcion {
        order: 2;
 
        width: 100%;
        max-width: 700px;
 
        margin: 0 auto 28px;
 
        text-align: center;
    }
 
    .causas-recurso {
        order: 3;
 
        margin: 0 auto 28px;
    }
 
    .causas-boton {
        order: 4;
 
        margin: 0 auto;
    }
 
}


.causas-pajaros {
    position: absolute;
    z-index: 1;
 
    left: -25px;
    top: 600px;;
 
    width: 325px;
    height: auto;
 
    pointer-events: none;
}

@media (max-width: 1350px) {
 
    .causas-pajaros {
        display: none !important;
    }
 
}

.plg-section {
    position: relative;
    width: 100%;
    min-height: 680px;
 
    background-image: url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    overflow: hidden;
}
 
.plg-container {
    position: relative;
    width: 100%;
    max-width: 1320px;          
    margin: 0 auto;
    min-height: 680px;
 
    padding: 60px 40px;
 
    display: flex;
    align-items: center;
    justify-content: center;    
    gap: 60px;                
}
 
.plg-contenido {
    position: static;
 
    width: 390px;
    flex: 0 0 390px;
 
    display: flex;
    flex-direction: column;
    align-items: flex-end;     
 
    text-align: right;
 
    z-index: 5;
}
 
.plg-logo {
    width: 100%;
    max-width: 390px;
 
    height: auto;
 
    display: block;
 
    margin: 0 0 18px;
}
 
.plg-texto {
    width: 560px;
    max-width: 560px;
 
    font-family: "Agrandir", sans-serif;

    font-size: 25px;
    line-height: 1.45;
 
    color: #ffffff;
 
    text-align: right;
 
    margin: 0 0 24px;
}
 
.plg-contenido .causas-boton {
    font-size: 18px;   
    padding: 10px 42px;
 
    margin: 0;
}
 
.plg-colombia {
    position: static;
 
    width: 430px;
    flex: 0 0 430px;
    height: auto;
 
    z-index: 3;
}

@media (max-width: 1350px) {
 
    .plg-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
 
        gap: 0;
    }
 
    .plg-contenido {
        order: 1;
 
        width: 100%;
        max-width: 700px;
 
        margin: 0 auto 28px;
 
        text-align: center;
        align-items: center;      
    }
 
    .plg-logo {
        margin: 0 auto 18px;
    }
 
    .plg-texto {
        width: 100%;
        max-width: 700px;
 
        margin: 0 auto 24px;
 
        text-align: center;
    }
 
    .plg-colombia {
        order: 2;
 
        max-width: 200px;
        max-width: 700px;
 
        margin: 0 auto;
    }
 
}


.medios-section {
    position: relative;
    width: 100%;
 
    background-color: #dcc6e6;
    background-image: url("../img/fondo-perros.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    overflow: hidden;
 
    padding: 70px 0 90px;
}
 

.medios-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
 
    background-color: #ee3f6e;
}
 
.medios-container {
    width: 100%;
    max-width: 1100px;
 
    margin: 0 auto;
    padding: 0 24px;
}
 
.medios-encabezado {
    margin-bottom: 10px;
}
 
.medios-titulo {
    font-family: "Agrandir", sans-serif;
    color: #3a0a7f;
 
    font-size: 46px;
    line-height: 1;
 
    margin: 0;
}
 
.medios-titulo strong {
    display: block;
 
    font-family: "CyGroteskBold", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
 
    font-size: 68px;
    line-height: 0.95;
}
 
.medios-firma {
    width: 170px;
    height: auto;
 
    display: block;
    margin: 6px 0 40px -6px;
}
 
.medios-galeria-wrap {
    position: relative;
}
 

.medios-linea-decorativa {
    position: absolute;
    z-index: 1;
 
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 2px;
 
    transform: translateX(-50%);
 
    background-image: repeating-linear-gradient(
        to bottom,
        #ee3f6e 0,
        #ee3f6e 6px,
        transparent 6px,
        transparent 24px
    );
 
    pointer-events: none;
}
 
.medios-galeria {
    position: relative;
    z-index: 2;
 
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 800px));
    justify-content: center;   
    gap: 44px 70px;
}
 
.medios-item {
    position: relative;    
 
    display: block;
 
    width: 100%;
    max-width: 800px;
    aspect-ratio: 8 / 5;
    margin: 0 auto;
 
    overflow: hidden;
    border: 7.5px solid #e5eaed;
 
    text-decoration: none;
}
 
.medios-item img {
    transition: filter 0.25s ease;
}
 
.medios-item:hover img {
    filter: grayscale(100%);
}
 

.medios-item::after {
    content: "Clic aquí para ver";
 
    position: absolute;
    inset: 0;
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
 
    background-color: rgba(58, 10, 127, 0.55);
 
    color: #ffffff;
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    font-size: 20px;
 
    opacity: 0;
    transition: opacity 0.25s ease;
 
    pointer-events: none;   
}
 
.medios-item:hover::after {
    opacity: 1;
}
 
.medios-item img {
    width: 100%;
    height: 100%;
 
    object-fit: cover;
    display: block;
}
 
.medios-boton-wrap {
    text-align: center;
    margin-top: 50px;
}
 
.medios-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
 
    background-color: #ee3f6e;
    color: #ffffff;
 
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    font-size: 16px;
 
    border: none;
    border-radius: 999px;
 
    padding: 11px 32px;
 
    cursor: pointer;
}
 
.medios-boton:hover {
    background-color: #d4335e;
}
 

.medios-boton.oculto {
    display: none;
}

.blog-section {
    position: relative;
    width: 100%;
 
    background-color: #2e0756;
    background-image: url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    overflow: hidden;
 
    padding: 70px 0 90px;
}
 
.blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
 
    background-color: #502673;
}
 
.blog-container {
    width: 100%;
    max-width: 1100px;
 
    margin: 0 auto;
    padding: 0 24px;
}
 
.blog-encabezado {
    margin-bottom: 10px;
}
 
.blog-titulo {
    font-family: "CyGroteskBold", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #e3d3f7;
 
    font-size: 68px;
    line-height: 0.95;
 
    margin: 0;
}
 
.blog-firma {
    width: 170px;
    height: auto;
 
    display: block;
    margin: 6px 0 40px -6px;
}
 
.blog-galeria-wrap {
    position: relative;
}
 
.blog-galeria {
    position: relative;
    z-index: 2;
 
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 800px));
    justify-content: center;
    gap: 44px 70px;
}
 
.blog-item {
    position: relative;
 
    display: block;
 
    width: 100%;
    max-width: 800px;
    aspect-ratio: 8 / 5;
    margin: 0 auto;
 
    overflow: hidden;
    border: 7.5px solid #e5eaed;   /* único borde que cambia respecto a Medios */
 
    text-decoration: none;
}
 
.blog-item img {
    width: 100%;
    height: 100%;
 
    object-fit: cover;
    display: block;
 
    transition: filter 0.25s ease;
}
 
.blog-item:hover img {
    filter: grayscale(100%);
}
 
.blog-item::after {
    content: "Clic aquí para ver";
 
    position: absolute;
    inset: 0;
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
 
    background-color: rgba(58, 10, 127, 0.55);
 
    color: #ffffff;
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    font-size: 20px;
 
    opacity: 0;
    transition: opacity 0.25s ease;
 
    pointer-events: none;
}
 
.blog-item:hover::after {
    opacity: 1;
}
 
.blog-boton-wrap {
    text-align: center;
    margin-top: 50px;
}
 
.blog-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
 
    background-color: #ee3f6e;
    color: #ffffff;
 
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    font-size: 16px;
 
    border: none;
    border-radius: 999px;
 
    padding: 11px 32px;
 
    cursor: pointer;
}
 
.blog-boton:hover {
    background-color: #d4335e;
}
 
.blog-boton.oculto {
    display: none;
}

.footer-pg{
    background-color: #430E2B;
    color: #fff;
    padding: 60px 0 25px;
}

.footer-pg h5{
    font-family: "Cy Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-pg h6{
    font-family: "Cy Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-pg p,
.footer-pg li,
.footer-pg a{
    font-family: "Agrandir", sans-serif;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    line-height: 1.8;
}

.footer-pg ul{
    padding: 0;
    margin: 0;
}

.footer-pg li{
    list-style: none;
    margin-bottom: 10px;
}

.footer-pg a:hover{
    color: #47F9F1;
}

.footer-pg hr{
    border-color: rgba(255,255,255,.15);
    margin: 35px 0 20px;
}

.redes-sociales{
    display: flex;
    gap: 15px;
}

.redes-sociales a{
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: .3s;
}

.redes-sociales a:hover{
    background: #47F9F1;
    color: #430E2B;
    transform: translateY(-4px);
}

.copyright{
    text-align: center;
    font-family: "Agrandir", sans-serif;
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin: 0;
}

.juanse{
    text-align: center;
    font-family: "Agrandir", sans-serif;
    font-size: 1rem;
    color: rgba(143, 161, 179, 0.7);
    margin: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
 
.footer-admin-link {
    font-family: "Agrandir", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);   
    text-decoration: none;
    transition: color 0.2s ease;
}
 
.footer-admin-link:hover {
    color: #47F9F1;
}
 


.login-section {
    min-height: 100vh;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    background-color: #2e0756;
    background-image: url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
    padding: 24px;
}
 
.login-caja {
    width: 100%;
    max-width: 420px;
 
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
 
    padding: 40px 32px;
 
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
 
.login-titulo {
    font-family: "CyGroteskBold", sans-serif;
    font-weight: bold;
    color: #3a0a7f;
 
    font-size: 32px;
    margin: 0 0 6px;
}
 
.login-subtitulo {
    font-family: "Agrandir", sans-serif;
    color: #6b6b6b;
    font-size: 14px;
 
    margin: 0 0 24px;
}
 
.login-form label {
    font-family: "Agrandir", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3a0a7f;
}
 
.login-form .form-control {
    border-radius: 10px;
    padding: 10px 14px;
}
 
.login-form .form-control:focus {
    border-color: #ee3f6e;
    box-shadow: 0 0 0 0.2rem rgba(238, 63, 110, 0.15);
}
 
.login-boton {
    background-color: #ee3f6e;
    color: #ffffff;
 
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
 
    border: none;
    border-radius: 999px;
 
    padding: 11px 0;
}
 
.login-boton:hover {
    background-color: #d4335e;
    color: #ffffff;
}
 
.login-boton:disabled {
    opacity: 0.7;
}
 
.login-error {
    background-color: #fdecef;
    color: #b3123a;
 
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
 
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
}
 
.login-volver {
    display: block;
    text-align: center;
 
    margin-top: 22px;
 
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
    color: #6b6b6b;
    text-decoration: none;
}
 
.login-volver:hover {
    color: #ee3f6e;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
.panel-body {
    background-color: #f4f2f8;
    min-height: 100vh;
    font-family: "Agrandir", sans-serif;
}
 
.panel-cargando {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2e0756;
}
 
.panel-header {
    background-color: #2e0756;
    padding: 26px 0;
    margin-bottom: 30px;
}
 
.panel-titulo {
    font-family: "CyGroteskBold", sans-serif;
    color: #ffffff;
    font-size: 22px;
    margin: 0;
}
 
.panel-usuario {
    font-family: "Agrandir", sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin: 2px 0 0;
}
 
.panel-boton-logout {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
    border-radius: 999px;
    padding: 8px 18px;
}
 
.panel-boton-logout:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
 
.panel-main {
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.panel-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.25);
}
 
.panel-card-titulo {
    font-family: "CyGroteskBold", sans-serif;
    color: #3a0a7f;
    font-size: 18px;
}
 
.panel-form label {
    font-family: "Agrandir", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #3a0a7f;
}
 
.panel-boton-primario {
    background-color: #ee3f6e;
    color: #ffffff;
    font-family: "Agrandir", sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
}
 
.panel-boton-primario:hover {
    background-color: #d4335e;
    color: #ffffff;
}
 
.panel-boton-primario:disabled {
    opacity: 0.7;
}
 
.panel-mensaje {
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
}
 
.panel-mensaje-exito {
    background-color: #e8f7ee;
    color: #1e7a45;
}
 
.panel-mensaje-error {
    background-color: #fdecef;
    color: #b3123a;
}
 
.panel-tab {
    background-color: transparent;
    border: 1px solid rgba(58, 10, 127, 0.25);
    color: #3a0a7f;
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
    font-weight: 600;
}
 
.panel-tab.activo {
    background-color: #3a0a7f;
    color: #ffffff;
}
 
.panel-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.panel-fila {
    display: flex;
    align-items: center;
    gap: 14px;
 
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
}
 
.panel-fila-img {
    width: 64px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
 
.panel-fila-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
 
.panel-fila-info a {
    font-family: "Agrandir", sans-serif;
    font-size: 13px;
    color: #3a0a7f;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
.panel-fila-info a:hover {
    text-decoration: underline;
}
 
.panel-fila-alt {
    font-family: "Agrandir", sans-serif;
    font-size: 12px;
    color: #999;
}
 
.panel-boton-borrar {
    background-color: transparent;
    border: none;
    color: #c0392b;
    font-size: 16px;
    flex-shrink: 0;
}
 
.panel-boton-borrar:hover {
    color: #922b21;
}