/* Fuente limpia y normal para que parezca hecho a mano */
body {
    font-family: 'Segoe UI', Verdana, sans-serif;
    margin: 0;
    background-color: #fff0f5; /* Rosa suave */
    color: #4a0e2e; /* Cafe rojizo oscuro para leer mejor */
}

/* Nav Semantico */
.barra-navegacion {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #ffc0cb;
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

/* Titulo principal */
.encabezado {
    text-align: center;
    padding: 40px 20px;
}

.encabezado h1 {
    font-size: 28px;
    color: #c71585;
}

/* Contenido */
.contenedor-principal {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    padding-bottom: 50px;
}

/* Visor fijo */
.columna-foto {
    flex: 1;
}

.caja-fija {
    position: sticky;
    top: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #ffc0cb;
}

.espacio-imagen {
    width: 220px;
    height: 220px;
    margin: 0 auto 15px;
    background: #fdf2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.espacio-imagen img {
    max-width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffc0cb;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Lista de tarjetas */
.columna-metodos {
    flex: 1.5;
}

.tarjeta {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 6px solid #ffb6c1;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tarjeta h2 {
    font-size: 18px;
    margin-top: 0;
    color: #db7093;
}

button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

button:hover {
    background-color: #d02090;
}

/* Footer */
.footer-final {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #ffc0cb;
}

/* Clase para el metodo addClass */
.borde-fucsia {
    border: 5px solid #ff1493 !important;
}

/* Responsive */
@media (max-width: 800px) {
    .contenedor-principal { flex-direction: column; }
}